BJAM ,为 vc-80 而不是 vc7.1 构建

发布于 2024-09-24 16:33:36 字数 279 浏览 6 评论 0原文

我如何使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

空城之時有危險 2024-10-01 16:33:36

您几乎猜对了:

..\bjam.exe release debug threading=multi toolset=msvc-8.0 stage \
    --with-date_time --build-type=complete --debug-configuration -d+2

注意:选项 toolset 没有破折号。

You almost got it right:

..\bjam.exe release debug threading=multi toolset=msvc-8.0 stage \
    --with-date_time --build-type=complete --debug-configuration -d+2

Note: no dashes for the option toolset.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文