VC6: LNK 1202 missing debugging info in .pdb file

"fatal error link 1202: Debug\vc60.pdb is missing debugging information for referencing module"

 

产生原因是:在当前项目中引用了另一个项目的lib库,我将当将项目设置生成PDB type : Con, 但是另一个项目的lib库可能没有对应的pdb,重新编译那个lib库,重引用它
再编译当前项目,错误消失,就是pdb文件签名不匹配了,调整一至就可以了。


 

LNK 4204 missing debugging info in .pdb file

Hi,


I have a MFC application that I am trying to run, I included a .lib in the application and the tried to link it, which then produce the warning vc60.pdb is missing debugging information for reference module. Does anyone has any idea as to how to fix this problem.

Thanks
  1. SeventhStar's Avatar
    SeventhStar is offlineMember +
    Join Date
    Nov 2002
    Location
    Sofia, Bulgaria
    Posts
    661
    Visual C++ Concepts: Building a C/C++ Program
    Linker Tools Warning LNK4204

    'filename' is missing debugging information for referencing module; linking object as if no debug info

    The .pdb file has an erroneous signature. The linker will continue to link the object without debug information. You may want to recompile the object file using the /Zi option.

    that's what is written in MSDN
    but why don't you try rebuilding the app first. I think it might help
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章