如何在 bjam 中添加新的编译器开关
我需要在托管 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
编译器标志所需的 makefile 宏是 CXXFLAGS,bjam 命令行上的等效宏是 cxxflags(小写):
The makefile macro you want for compiler flags is CXXFLAGS, and its equivalent on the bjam command line is cxxflags (lower case):
您读过这篇文章线?我认为这会有所帮助。
Have you read this thread? I think it can help.