cannot find or open the pdb file Visual Studio C++ 2013

cannot find or open the pdb file Visual Studio C++ 2013

Try go to Tools->Options->Debugging->Symbols and select checkbox Microsoft Symbol Servers, Visual Studio will download PDBs automatically.

PDB is a debug information file used by Visual Studio. These are
system DLLs, which you dont have debug symbols for.[…]

See Cannot find or open the PDB file in Visual Studio C++ 2010

No problem. Youre running your code under the debugger, and the debugger is telling you that it doesnt have debugging information for the system libraries.

If you really need that (usually for stack traces), you can download it from Microsofts symbol servers, but for now you dont need to worry.

cannot find or open the pdb file Visual Studio C++ 2013

Working with VS 2013. Try the following

Tools -> Options -> Debugging -> Output Window -> Module Load
Messages -> Off

It will disable the display of modules loaded.

Leave a Reply

Your email address will not be published.