Re: [UM-LINUX] GUI debugger?

2007-07-26 Thread John Demme
Here's one that's not a GDB front-end. It's pretty beta, though: http://www.zerobugs.org/ ~John On 7/26/07, Nicholas Bishop <[EMAIL PROTECTED]> wrote: There are some GUI debuggers; most of them are actually just frontends to gdb.

Re: [UM-LINUX] GUI debugger?

2007-07-26 Thread David Eisner
Nicholas Bishop wrote: > There are some GUI debuggers; most of them are actually just frontends You might also want to take a look at Eclipse with CDT; the debugger interfaces with gdb. I've used it with MinGW and Cygwin on Windows with some success, but I haven't tried with Linux. It's still a

Re: [UM-LINUX] GUI debugger?

2007-07-26 Thread Christopher Conroy
Eclipse CDT tools allows for debugging of C code (I'm not sure about C++, but presumably C++ as well) using the Eclipse GUI. If you have to drop to GDB, print out a handy reference card so you don't have to keep typing 'help' for every little command: http://cs.nyu.edu/courses/spring07/V22.0474-0

Re: [UM-LINUX] GUI debugger?

2007-07-26 Thread Judah Milgram
xxgdb might work for you. Also, emacs has, I believe, a debug mode that provides an interface to gdb. Judah Howard Sanner <[EMAIL PROTECTED]> wrote: > Is there a GUI debugger for C/C++ under Linux and X-windows? > apropos debug turned up gdb, which doesn't seem to be quite the > thing. Eve