1.33 -> 1.34
Old Boost1.33 requires -sTOOLS parameter.
But on new Boost 1.34, this parameter is replaced with --toolset.
On Boost 1.33, "-sTOOLS=msvc" means only VC6. if you want to build with VC7.1(.NET 2003), you have to set "-sTOOLS=VC-7_1".
But now, "--toolset=msvc" means latest available VC of 6, 7.1, 8.0.
For example, if "bjam --toolset=msvc" runs on a PC installed both VC7.1 and 8.0, the bjam build Boost with the VC8.0. If you want forcely to use VC7.1 on the PC, you should set specified version explicitly, so
- VC(newest)
--toolset=msvc- VC7.1
--toolset=msvc-7_1- VC8
--toolset=msvc-8_0
No comments:
Post a Comment