views:

131

answers:

2

Anyone else dealt with VS2010 debug in C++ and have it just sit there for 30+ second each time you step? This is happening to me and the call stack window just has this grey thing that says "Busy..." in it during this freeze. The whole interface just locks down...each and every step I make and right now I'm trying to step through this massive policy based design in boost to figure out WTF I got a, "no RTTI data," error when I know the compiler is using RTTI.

Anyway, its frustrating the holy hell out of me so if anyone has any idea how to speed this thing up to at least a snail's pace that would be great.

+2  A: 

Have you seen these?

Visual Studio debugger slows down in in-line code

Slow debugging issue in Visual Studio

Nikola Smiljanić
No, I didn't. Unfortunately they don't seem to address my particular problem. Some suggest it was fixed in 2008 sp1 but I have an even more updated compiler. Suppose it could be a regression but then I'm screwed. It is inline code...
Noah Roberts
+2  A: 

You aren't using data breakpoints or conditional breakpoints are you? Both of these slow down running/stepping significantly.

Mark B
No. Thanks for the attempt though.
Noah Roberts