相关文章推荐

This browser is no longer supported.

Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.

Download Microsoft Edge More info about Internet Explorer and Microsoft Edge

PDB 'filename' was not found with 'object/library' or at 'path'; linking object as if no debug info

The linker was unable to find your .pdb file. Copy it into the directory that contains object/library .

To find the name of the .pdb file associated with the object file:

  • Extract an object file from the library with lib /extract: objectname .obj xyz .lib .

  • Check the path to the .pdb file with dumpbin /section:.debug$T /rawdata objectname .obj .

    You could also compile with /Z7 , so the pdb doesn't need to be used, or remove the /DEBUG linker option if you do not have .pdb files for the objects you are linking.

  •  
    推荐文章