From 06c5eea393696d6d511df5469b474aec19c2882d Mon Sep 17 00:00:00 2001 From: Vladimir Prus Date: Sun, 24 Feb 2008 12:59:04 +0000 Subject: [PATCH] Recognize that fact, for that for intel-win, matters and should be added to the library name. [SVN r43405] --- src/tools/common.jam | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/tools/common.jam b/src/tools/common.jam index 9ef8b22f9..90edc220e 100644 --- a/src/tools/common.jam +++ b/src/tools/common.jam @@ -798,8 +798,9 @@ local rule runtime-tag ( name : type ? : property-set ) # toolset, the tag rules won't even see . Similar # functionality in V2 is not implemented yet, so we just check for toolsets # which are known to care about runtime debug. - if msvc in $(properties) || - stlport in $(properties) + if msvc in $(properties) + || stlport in $(properties) + || win in $(properties) { if on in $(properties) { tag += g ; } }