How do I get a visual debugger on Mac OS when I have no XCode project?

Posted by sludge on Stack Overflow See other posts from Stack Overflow or by sludge
Published on 2010-05-24T20:57:56Z Indexed on 2010/05/24 21:01 UTC
Read the original article Hit count: 239

Filed under:
|
|
|

I am porting a project over to OS X. I am finding GDB debugging in the console to be woefully insufficient and really need a visual debugger. My project is built using Scons and as such, it sidesteps Xcode's IDE entirely. This is acceptable until I need to fire up a visual debugger and step through my code.

Aside from generating and maintaining an Xcode project (to supplement all of the other platforms I have to support already), what can I do to get a visual debugger up and running on OS X?

This is for a C++ project.

© Stack Overflow or respective owner

Related posts about c++

Related posts about xcode