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?

有帮助吗?

解决方案

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.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top