Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unable to debug the CRT source files in Visual Studio 2013 debugger

I just installed Visual Studio 2013 and tried to create a "Hello World" console C++ app. I am trying to debug through the CRT source code but I am unable to do so. I notice that the source files are still installed in the Program Files \ Visual Studio location but the debugger is not able to find them. I used to be able to do this in Visual Studio 2012. What is going wrong?

like image 964
Raman Sharma Avatar asked Oct 26 '13 06:10

Raman Sharma


Video Answer


1 Answers

Starting with Visual Studio 2013, the PDB files of the Visual C++ Libraries will no longer be shipped with the VS product. They will be available only through the Microsoft symbol server. So, you need to set the correct symbol server information in your Visual Studio options.

Option to add symbol server information

For more information about PDBs and debugger options see this MSDN link.

like image 178
Raman Sharma Avatar answered Oct 06 '22 13:10

Raman Sharma