vote up 4 vote down star
4

Hi, am pretty excited with the GNU Debugger and a GUI called Insight as it has saved me A LOT OF time. Thus I am posting this question/answer for other newbies out there like me having problems with their C code looking for a visual way to see what's going on.

I am working on Linux Mint (Ubuntu) btw.

flag
And your question is? If you just want to share your excitement with the whole world, go for reddit or get a blog. SO is about questions and answers. – qrdl Nov 4 at 8:09

6 Answers

vote up 5 vote down check

I highly recommend ddd especially if you have complex data structures to visualize.

alt text

link|flag
vote up 0 vote down
  1. Install Insight a GUI for GNU Project Debugger
  2. Compile your source
  3. Run the debugger

_

$ sudo apt-get install insight    
$ gcc -g source.c -o application
$ insight

Insight

link|flag
Is insight still being worked on? I thought RedHat dropped development. – nathan Nov 4 at 1:41
There still seems to be project activity: sourceware.org/insight/news.php – Radek Nov 4 at 11:03
vote up 0 vote down

NetBeans has a nice front end for gdb. So does Eclipse.

link|flag
vote up 0 vote down

Might I ask how you guys are managing to get C source code loaded into your debuggers? This is new to me, I thought you had to only load executables?

Thanks

link|flag
This is what is known as a symbolic debugger. You need to compile your code with debugging symbols (most compilers for Unix use the -g flag). This gives the debugger the information needed to know what line of your source code the current machine instruction corresponds to and use this to make it appear that you are debugging the source. – R Samuel Klatchko Nov 4 at 5:35
vote up 0 vote down

Hi New,

Your are right that we load the executables, but when you are compiling you will need to compile with the debug flag (think is it -g in gcc, abit rusty on that ), that will insert the debugging information into the executable/obj files.

link|flag
vote up 0 vote down

When developing for Windows using GCC (e.g. MinGW), I often found it painful to get a GUI for GDB working (And I have a disliking for Eclipse), but I'm really fond of the Code:Blocks IDE.

link|flag

Your Answer

Get an OpenID
or

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