编译静态库
生成x86的脚本代码 b2.exe install --prefix="D:\Temporary\Test\Boost\boost_1_75_0\x86" --build-type=complete --toolset=msvc-14.2 threading=multi --build-type=complete address-model=32 生成x64的脚本代码 b2.exe install --prefix="D:\Temporary\Test\Boost\boost_1_75_0\x64" --build-type=complete --toolset=msvc-14.2 threading=multi --build-type=complete address-model=64 或直接 b2.exe --toolset=msvc-14.1 architecture=x86 address-model=64 link=static --build-type=complete --with-system --with-thread --with-date_time --with-filesystem --with-serialization
1. 解压最新的boost库代码
2. 在命令行窗口中执行bootstrap.bat等待生成b2.exe
3. 运行b2.exe stage --toolset=msvc --stagedir="D:\boost\out\bin" link=static threading=multi runtime-link=static --build-type=complete –-build-dir="D:\boost\out\build"
4. 输出结果包含最新32和64的静态库