我如何使用用于vc80的bjam构建boost库date_time。
目前我正在使用
.. \ bjam.exe释放调试威胁
ding = multi --toolset = msvc-8.0 stage --with-date_time --build-type = complete --deb
ug配置-d + 2
这只会生成vc7.1版本的库,我需要的是vc80。
我还注意到,使用的是v1版本的Boost.Build安装程序,而不是v2。
因此未使用user_config.jam。
最佳答案
您几乎完全正确:
..\bjam.exe release debug threading=multi toolset=msvc-8.0 stage \
--with-date_time --build-type=complete --debug-configuration -d+2
注意:选项
toolset
中没有破折号。