vote up 0 vote down star
1

Hi -

Does anyone know of a C++ IDE or debugger that's supports debugger visualizers for unmanaged C++ code? The problem is that Visual Studio's debugger visaulizer supports only managed C++.

Thanks,

  • Olumide

PS: I'm still open to using VS if I can find a technique for making the visualizer work with unmanaged C++.

flag

2 Answers

vote up 1 vote down

Are the custom visualizers in Visual Studio 2005+ (basically editing autoexp.dat) what you need?

link|flag
Thanks guys. I will look into the options you suggested. If it matters, I'm writing a graphics program and I'm looking to find a way to make the debugger write any selected objects to the filesystem while debugging. See for example: codeproject.com/KB/macros/… Thanks. – Olumide Sep 30 at 13:40
For that you need to write an AddIn DLL like the one described here: msdn.microsoft.com/en-us/library/… – Cristian Adam Sep 30 at 14:03
vote up 0 vote down

Use ddd debugger for unmanaged code. AFAIK, it only works on *nix systems.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.