$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: ghost_at_[hidden]
Date: 2008-02-24 07:59:05
Author: vladimir_prus
Date: 2008-02-24 07:59:04 EST (Sun, 24 Feb 2008)
New Revision: 43405
URL: http://svn.boost.org/trac/boost/changeset/43405
Log:
Recognize that fact, for that for intel-win, <runtime-debuggin>
matters and should be added to the library name.
Text files modified: 
   trunk/tools/build/v2/tools/common.jam |     5 +++--                                   
   1 files changed, 3 insertions(+), 2 deletions(-)
Modified: trunk/tools/build/v2/tools/common.jam
==============================================================================
--- trunk/tools/build/v2/tools/common.jam	(original)
+++ trunk/tools/build/v2/tools/common.jam	2008-02-24 07:59:04 EST (Sun, 24 Feb 2008)
@@ -798,8 +798,9 @@
     # 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 ; }
     }