2

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++.

Olumide
  • 5,397
  • 10
  • 55
  • 104

2 Answers2

2

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

Cristian Adam
  • 4,749
  • 22
  • 19
  • 1
    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: http://www.codeproject.com/KB/macros/GraphicDebuggerVisualizer.aspx Thanks. – Olumide Sep 30 '09 at 13:40
  • For that you need to write an AddIn DLL like the one described here: http://msdn.microsoft.com/en-us/library/8fwk67y3%28VS.80%29.aspx – Cristian Adam Sep 30 '09 at 14:03
0

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

vehomzzz
  • 42,832
  • 72
  • 186
  • 216