2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-14 00:32:11 +00:00

Recognize that fact, for that for intel-win, <runtime-debuggin>

matters and should be added to the library name.


[SVN r43405]
This commit is contained in:
Vladimir Prus
2008-02-24 12:59:04 +00:00
parent 57e521f9da
commit 06c5eea393

View File

@@ -798,8 +798,9 @@ local rule runtime-tag ( name : type ? : property-set )
# toolset, the tag rules won't even see <runtime-debugging>. Similar
# functionality in V2 is not implemented yet, so we just check for toolsets
# which are known to care about runtime debug.
if <toolset>msvc in $(properties) ||
<stdlib>stlport in $(properties)
if <toolset>msvc in $(properties)
|| <stdlib>stlport in $(properties)
|| <toolset-intel:platform>win in $(properties)
{
if <runtime-debugging>on in $(properties) { tag += g ; }
}