From deebd6b5210c1689e06018d35ff8f243eb3e705e Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Thu, 15 Nov 2007 18:56:43 +0000 Subject: [PATCH] Switch intel-win32 to use static multi thread runtime since the single thread static runtime is no longer available. (fixes #1287) [SVN r41113] --- historic/jam/src/build.jam | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/historic/jam/src/build.jam b/historic/jam/src/build.jam index cd78b11e8..d7b1c6372 100644 --- a/historic/jam/src/build.jam +++ b/historic/jam/src/build.jam @@ -197,8 +197,8 @@ toolset intel-linux icc : "-o " : -D ## 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 ?