构建 exe 时如何禁用 exp/lib 生成?

发布于 2024-07-19 06:27:33 字数 129 浏览 8 评论 0原文

我意识到这可能是由某些 _dllexport() 引起的,不是在我的代码中,而是在某些第三方代码中。 (Qt、Boost、OpenSG...)

是否有一个简单的链接器选项可以禁用此功能? 我已经搜索过但没有找到任何地方。

I realize this is probably caused by some _dllexport() somewhere, not in my code but in some third-party piece. (Qt, Boost, OpenSG, ...)

Is there a simple linker option to disable this? I've searched but not found anywhere.

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

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

发布评论

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

评论(3

深陷 2024-07-26 06:27:33
  • 要禁用 .lib 的生成,请使用 /NOIMPLIB 链接器开关。
  • 要禁用 .exp 文件的生成,请使用 /NOEXP 链接器开关。
  • To disable generation of .lib use /NOIMPLIB linker switch.
  • To disable generation of .exp files use /NOEXP linker switch.
不乱于心 2024-07-26 06:27:33

AFAIK,不,因为相关的#pragma 会覆盖链接器设置。

AFAIK, no, because the relevant #pragma's override the linker settings.

寒冷纷飞旳雪 2024-07-26 06:27:33

我建议您确保中间文件和输出文件有不同的文件夹。

我用这种方式设置项目(项目属性/常规配置页面):

Output Directory = $(SolutionDir)\Build\$(ConfigurationName)
Intermediate Directory = $(SolutionDir)\Build\$(ConfigurationName)\$(ProjectName)

I suggest you make sure that you have different folders for intermediate files and output files.

I use to setup the projects this way (project properties/general configuration page):

Output Directory = $(SolutionDir)\Build\$(ConfigurationName)
Intermediate Directory = $(SolutionDir)\Build\$(ConfigurationName)\$(ProjectName)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文