BJAM ,为 vc-80 而不是 vc7.1 构建
我如何使用 bjam for vc80 构建 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 没有被使用。
How can i build a boost library date_time using bjam for vc80.
currently I am using
..\bjam.exe release debug threa
ding=multi --toolset=msvc-8.0 stage --with-date_time --build-type=complete --deb
ug-configuration -d+2
This only generates libraries with the vc7.1 version, what I need is vc80.
I also noticed that the v1 verion Boost.Build setup was being used instead of the v2.
So user_config.jam was not being used.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您几乎猜对了:
注意:选项
toolset
没有破折号。You almost got it right:
Note: no dashes for the option
toolset
.