Bjam:忽略特定库

发布于 2024-08-17 15:12:29 字数 173 浏览 5 评论 0原文

使用 Visual Studio,可以“忽略特定库” (项目属性 > 配置属性 > 链接器 > 输入 > 忽略 特定库)。

我们发现这在项目中很有用。现在我们想要构建 该项目使用 boost-build (bjam),但我们需要重现该链接器行为。

bjam 有忽略库功能吗?

Using Visual Studio, it is possible to 'Ignore Specific Library'
(Project Properties > Configuration Properties > Linker > Input > Ignore
Specific Library).

We found this useful in a project. Now we want to build
that project using boost-build (bjam), but we need to reproduce that linker behaviour.

Is there any ignore library feature with bjam?

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

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

发布评论

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

评论(1

丶情人眼里出诗心の 2024-08-24 15:12:29

您可以在命令行

bjam linkflags=/NODEFAULTLIB:xxx

或从 jamfile 中

<linkflags>/NODEFAULTLIB:xxx

设置它或在代码本身中使用 Visual Studio 的 pragma comment 功能

#pragma comment(linker, "/NODEFAULTLIB:xxx")

You could set it at the command line

bjam linkflags=/NODEFAULTLIB:xxx

Or from within a jamfile

<linkflags>/NODEFAULTLIB:xxx

Or use Visual Studio's pragma comment feature in your code itself

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