How do I add the .pdb file associated with the lib file?

How do I add the .pdb file associated with the lib file?

I am importing a .lib file into a C ++ project. When I create it, I get a message that the vc90.pdb does not contain debug information. I have a pdb file associated with a library. how can i add it to my current project. Thanks to

+2


a source to share


1 answer


We just have a pdb file sitting in the same directory as a .lib file with the same name (like foo.lib and foo.pdb) and the compiler seems to pick that automatically. We don't specify anything in the .pdb files.



I think vc90.pdb is a VS2008 backup if it can't find one name.

+1


a source







All Articles