I wanted to build just the
<threading>multi <link>static <runtime-link>dynamic
version of Boost 1.34 with MSVC 8.0. However, I did not find any info on how to do that, do I ended up deleting the extra targets from Jamfile.v2's "default-build". Sure there is a better way of doing this (some command-line flags)?
bjam threading=multi link=static runtime-link=dynamic
ought to work
Thanks! Actually (mea culpa) one of the flags should have been "shared" rather than "dynamic", so the command line is bjam threading=multi link=static runtime-link=shared Maybe if someone has the possibility to modify the "getting started" docs (http://www.boost.org/more/getting_started/windows.html#invoke-bjam), I think that it would be good to mention these options there. Cheers, Filip