Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在托管 c++ 中编译一个库并查看 msvc.jam,我找不到任何可以将 /clr 开关添加到我的编译标志的功能。
我将如何添加这样的功能?如果可能,我想避免修改 msvc.jam。
编译器标志所需的 makefile 宏是 CXXFLAGS,它在 bjam 命令行上的等价物是 cxxflags(小写):
bjam toolset=msvc cxxflags=/clr
你读过这个线程吗?我认为它可以提供帮助。