$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
From: Sohail Somani (s.somani_at_[hidden])
Date: 2006-06-20 15:31:37
Hi,
Boost.Build V2 (Milestone 10)
Boost.Jam 03.1.12
If you do a single threaded build with msvc8, you will get messages
like:
cl : Command line warning D9002 : ignoring unknown option '/ML'
The reason is that Microsoft doesn't support the single threaded
statically linked CRT anymore.
Anyway, in msvc.jam, the lines:
flags msvc.compile CFLAGS
<runtime-debugging>off/<runtime-link>static/<threading>single : /ML ;
flags msvc.compile CFLAGS
<runtime-debugging>on/<runtime-link>static/<threading>single : /MLd ;
Should be changed to be /MT and /MTd respectively for msvc8 and up.
How can I do this?
Thanks!
Sohail