vote up 1 vote down star

I would like to run a GTK+/C program line by line with some debugger. I have never debugged a Linux program so where can I find instructions to a very beginner on how to debug code? I have just an idea that I have to download the sources from net, compile the project with debug symbols and run sources through DDD or GDB. So can anyone give suggestions how to start studying these subjects and what could be a good debugger to start? I have at least time to learn things.

flag

Jaska, your accept rate is 0%. People are unlikely to spend time answering your question if you will not accept any of their answers. – BuckFilledPlatypus Oct 1 at 16:23
Why do you say I haven't accepted any answers? I have got fine suggestions here and I really appreciate that people here have had time to help me on my problems. What else can I do? Add a comment "Thank you very much"? – Jaska Oct 1 at 16:33
No, the tick underneath the vote buttons means that you have accepted that answer as correct. – Joe Oct 1 at 16:36
(see the '0% accept rate' by your name) – Joe Oct 1 at 16:37
Jaska, you need to click the big checkmark next to the best answer on each question you ask. – bstpierre Oct 1 at 16:37
show 5 more comments

3 Answers

vote up 0 vote down check

Also look into nemiver besides DDD, they are good at different things but nemiver is coming along very nicely.

PS. If you're on Ubuntu and you want to step through an application that's installed from the package repository, let's called it some_package, then do this:

  1. install the packages "build-essential" and "devscripts"
  2. run "sudo apt-get build-dep some_package" to install all things needed to compile that package
  3. run "mkdir -p ~/src/some_package ; cd ~/src/some_package" to create a directory for the source code
  4. Go into System::Administration::Software Sources and activate the "Source Code" repository
  5. run "apt-get source some_package" to download the source code for some_package and put it in the current directory
  6. use "cd" to move into the specific app directory, usually something like "some-app-1.2.3"

7A. run "debuild -us -uc -b" to compile the source into a fresh installable .DEB file compiled in release mode WITHOUT debug information

or (and this is the central part):

7B. run "MAKEFLAGS=-j6 DEB_BUILD_OPTIONS="nostrip noopt parallel=5" CFLAGS="-g3 -O0" debuild -us -uc" to build a deb in debug mode WITH debug information

  1. use "cd .." to move up one step and then do "ls" and you should see the generated DEB files (multiple binary packages, i.e. DEBs, can be generated from a single source package)
  2. sudo "sudo dpkg -i some_package_123.deb" to install the version you just built

Of course, you could optionally modify the code between steps 6 and 7. The nice thing about this method is that it works for pretty much any application. You can use it for Firefox, the Linux kernel, the mesa stack or whatever.

link|flag
Thanks! I tried Nemiver to debug gedit and this works. But it calls some GTK+'s libraries so how can I use Nemiver to see what is going to happen inside GTK library? And can I combine valgrind and Nemiver so that I can see if there is a memory leak between lines, say 1 to 350. – Jaska Oct 10 at 16:55
By the way, Ubuntu repositories does not hold the latest code developers uses. Is there some method to compile the latest code they are working on? – Jaska Oct 18 at 15:59
Different upstream projects use different VCS and build systems so there is no universal method for building them. You just have to learn whatever tools that particular project uses, which can be a big hurdle for large projects like Mozilla or Xorg. – martin Oct 20 at 10:11
vote up 1 vote down

Look into using GDB and compiling with gcc -g, or using another debugger.

I'd go into more detail, but your 0% accept rate is concerning.

http://en.wikipedia.org/wiki/Gdb

link|flag
Thank you very much! I accepted the answer but rating shows still 0%. Trust me: I accept your and anyone else answers I have got so far no matter the rate shows. I don't trust Wikipedia as anyone can edit it. Is there more reliable tutorial? – Jaska Oct 1 at 17:21
@Mike: He's only asked 7 questions. Give it time. – Brian Oct 1 at 17:22
1  
@Jaska: The article links to dirac.org/linux/gdb as a suggested tutorial. – Brian Oct 1 at 17:23
Wikipedia shouldn't be treated as reliable information. I use it as an easy way of finding reliable sources of information. – Mike Oct 1 at 17:25
vote up 0 vote down

http://www.sourceware.org/current/onlinedocs/gdb%5Ftoc.html

Full gdb user manual online.

link|flag

Your Answer

Get an OpenID
or

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