$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: grafikrobot_at_[hidden]
Date: 2007-11-15 13:56:43
Author: grafik
Date: 2007-11-15 13:56:43 EST (Thu, 15 Nov 2007)
New Revision: 41113
URL: http://svn.boost.org/trac/boost/changeset/41113
Log:
Switch intel-win32 to use static multi thread runtime since the single thread static runtime is no longer available. (fixes #1287)
Text files modified: 
   trunk/tools/jam/src/build.jam |     4 ++--                                    
   1 files changed, 2 insertions(+), 2 deletions(-)
Modified: trunk/tools/jam/src/build.jam
==============================================================================
--- trunk/tools/jam/src/build.jam	(original)
+++ trunk/tools/jam/src/build.jam	2007-11-15 13:56:43 EST (Thu, 15 Nov 2007)
@@ -197,8 +197,8 @@
 ## Intel C/C++ for Win32
 toolset intel-win32 icl : /Fe : -D
     : /nologo
-    [ opt --release : /ML /O2 /Ob2 /Gy /GF /GA /GB ]
-    [ opt --debug : /MLd /DEBUG /Z7 /Od /Ob0 ]
+    [ opt --release : /MT /O2 /Ob2 /Gy /GF /GA /GB ]
+    [ opt --debug : /MTd /DEBUG /Z7 /Od /Ob0 ]
     -I$(--python-include) -I$(--extra-include)
     : kernel32.lib advapi32.lib user32.lib $(--python-lib[1]) ;
 ## KCC ?