Bjam:忽略特定库
使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在命令行
或从 jamfile 中
设置它或在代码本身中使用 Visual Studio 的 pragma comment 功能
You could set it at the command line
Or from within a jamfile
Or use Visual Studio's pragma comment feature in your code itself