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.
使用 Visual Studio,可以“忽略特定库”(项目属性 > 配置属性 > 链接器 > 输入 > 忽略特定库)。
我们发现这在项目中很有用。现在我们想使用 boost-build (bjam) 构建该项目,但我们需要重现该链接器行为。
bjam 是否有任何忽略库功能?
您可以在命令行中设置它
bjam linkflags=/NODEFAULTLIB:xxx
或从 jamfile 中
<linkflags>/NODEFAULTLIB:xxx
或者在您的代码中使用 Visual Studio 的编译指示注释功能
#pragma comment(linker, "/NODEFAULTLIB:xxx")