Reputation: 552
I was having a problem the last few days that when I started debugging a c++ project in Visual studio 2012, VS immediately crashed. It offered an option to send report to Microsoft and then restarted. It offered no additional info what might have caused the problem. Before VS crashes, it sometimes displays the dialogbox saying it's loading symbols.
I'm using Windows 8, Visual studio 2012. I have disabled extensions in order to eliminate them from the equation.
Upvotes: 2
Views: 2016
Reputation: 1225
Unchecked "enable just my code(managed only)" in the Tools -> Options -> Debugging -> General Tested on windows 8 and 10 with VS 2012.
Upvotes: 0
Reputation: 31
I'm using Visual Studio 2012 Express (Desktop), and the crashes appear to have stopped after I did the following:
Upvotes: 3
Reputation: 552
Since I'm using Windows 8 my first thought that was that the problem was OS related, since I don't have this issue on Win 7. I didn't find any helpful info on the web that would convince me that it was Win 8 fault.
Before VS crashed, it sometimes displayed the dialog box saying it's loading symbols. This led me to experiment with the settings in Tools -> Options -> Debugging -> Symbols. I checked permissions on the Cache symbols folder, but it didn't help. I checked "Only specified modules" for the Automatically load symbols for... option. By clicking "Specified modules" link I saw that the list of specified modules was empty so I assumed it won't try to load any modules. I was wrong. I actually had to uncheck the checkbox "always load symbols located next to modules". Unchecking this option solved my crashing problem and now everything works fine.
Upvotes: 1