如何清除链接警告4099

发布于 2024-12-10 04:30:40 字数 82 浏览 0 评论 0 原文

在我的vc2005解决方案中,构建它时,会显示一些警告,例如“警告LNK4099:未找到PDB'libbmt.pdb'...”,但我不知道如何禁用它。

In my vc2005 solution , when build it ,some warning will displayed such as "warning LNK4099: PDB 'libbmt.pdb' was not found...", But I don't know to to disable it.

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

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

发布评论

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

评论(2

戴着白色围巾的女孩 2024-12-17 04:30:40

它无法被禁用,因为它位于 Microsoft 的不可忽略警告列表中。

如果您有正在使用的库的源代码,则可以在调试模式下重建它们,并将生成的 *.pdb 文件复制到与要链接的库相同的目录中。

如果您没有源代码,有一个解决方法,但它涉及对链接器进行十六进制编辑:https://connect.microsoft.com/VisualStudio/feedback/details/176188/can-not-disable-warning-lnk4099

本质上,对您的 link.exe 进行十六进制编辑(备份后!)以删除
不可忽略的警告列表中出现 4099。我做到了并且
一百多个4099警告消失了! [看
对于十六进制字节 03 10 00 00 (作为 32 位小端字节序,它是 4099
十六进制值)。将其更改为(例如)FF FF 00 00,保存文件即可
完成。

It cannot be disabled, as it is on Microsoft's list of unignorable warnings.

If you have the source for the libraries you are using, you can rebuild them in Debug mode and copy the generated *.pdb files to the same directory as the libs you are linking.

If you do not have the source, there is a workaround, but it involves hex-editing the linker: https://connect.microsoft.com/VisualStudio/feedback/details/176188/can-not-disable-warning-lnk4099

Essentially, hex edit your link.exe (after backing it up!) to zap the
occurrence of 4099 in the list of non-ignorable warnings. I did it and
the hundred or so 4099 warnings disappeared! [L]ook
for the hex bytes 03 10 00 00 (which is 4099 as a 32-bit little-endian
hex value). Change it to (say) FF FF 00 00, save the file and you're
done.

最终幸福 2024-12-17 04:30:40

我不了解 VS2005,但在较新的版本中,您可以通过添加 /ignore:4099

screenshot

I don't know about VS2005 but in newer versions you can ignore specific link warnings by adding /ignore:4099

screenshot

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