如何清除链接警告4099
在我的vc2005解决方案中,构建它时,会显示一些警告,例如“警告LNK4099:未找到PDB'libbmt.pdb'...”,但我不知道如何禁用它。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
在我的vc2005解决方案中,构建它时,会显示一些警告,例如“警告LNK4099:未找到PDB'libbmt.pdb'...”,但我不知道如何禁用它。
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
它无法被禁用,因为它位于 Microsoft 的不可忽略警告列表中。
如果您有正在使用的库的源代码,则可以在调试模式下重建它们,并将生成的 *.pdb 文件复制到与要链接的库相同的目录中。
如果您没有源代码,有一个解决方法,但它涉及对链接器进行十六进制编辑:https://connect.microsoft.com/VisualStudio/feedback/details/176188/can-not-disable-warning-lnk4099
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
我不了解 VS2005,但在较新的版本中,您可以通过添加
/ignore:4099
I don't know about VS2005 but in newer versions you can ignore specific link warnings by adding
/ignore:4099