禁用特定库的链接
在 Visual Stuido 2008 中,我收到“警告 LNK4099:找不到 PDB 'vc60.pdb' ...”问题是包含此特定 .obj 文件的 .lib 文件不是我可以明确告诉的“项目”生成/不生成调试信息。如果可能的话,我不想简单地忽略这个警告。有什么方法可以告诉我的项目不要链接这个库吗?
In Visual Stuido 2008, I am getting "warning LNK4099: PDB 'vc60.pdb' was not found with ..." The problem is the .lib file containing this specific .obj file is not a "project" that I can specifically tell to generate/not generate debug info for. If possible, I do not want to simply ignore the warning. Is there any way to tell my project to not link this library?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试链接器选项 - >忽略默认库 - 如果您不使用它们,则不必保留引用。如果使用此选项,如果您没有告诉链接,则不会链接库。
Try linker options->ignore default libraries - if you don't use them, you dont have to keep references. If using this option, no library linked, if you did not told to link.