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
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章