如何在 bjam 中添加新的编译器开关

发布于 2024-11-05 02:50:38 字数 109 浏览 1 评论 0原文

我需要在托管 C++ 中编译一个库并查看 msvc.jam,我找不到任何将 /clr 开关添加到我的编译标志的功能。

我该如何添加这样的功能? 如果可能的话,我想避免修改msvc.jam。

I need to compile a library in managed c++ and looking into msvc.jam, I cannot find any feature that would add the /clr switch to my compile flags.

How would I add such a feature?
If possible, I would like to avoid modifying msvc.jam.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

兔小萌 2024-11-12 02:50:39

编译器标志所需的 makefile 宏是 CXXFLAGS,bjam 命令行上的等效宏是 cxxflags(小写):

bjam toolset=msvc cxxflags=/clr

The makefile macro you want for compiler flags is CXXFLAGS, and its equivalent on the bjam command line is cxxflags (lower case):

bjam toolset=msvc cxxflags=/clr
内心激荡 2024-11-12 02:50:39

您读过这篇文章线?我认为这会有所帮助。

Have you read this thread? I think it can help.

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