vote up 1 vote down star
1

I want to debug an application in Linux. The application is created in C++. The GUI is created using QT. The GUI is linked with a static library that can be treated as the back end of the application.

I want to debug the static library but am not sure how to do that.

I tried using gdb

gdb GUI

But how can I attach the library?

Has anyone had experience in debugging libraries in linux?

flag

22% accept rate

5 Answers

vote up 0 vote down

You can also use Kdbg or ddd

link|flag
vote up 1 vote down

A little-known alternative is gdbtui which uses a curses based interface.

link|flag
vote up 5 vote down

If you want to debug the library code itself, you'll need to build the library with the -g compiler flag (as well as building the executable with -g as litb pointed out). Otherwise gdb will step through your code fine but will throw up its hands each time you make a library call.

link|flag
vote up 2 vote down

You can Try KDbg, DDD - Data Display Debugger, Code::Blocks

Ulike DDD, others are IDE with debugger integrated but core debugger [gdb] remains same in those IDE. only thing is that you will get oragnized view of debugger view in GUI.

Also try Eclipse+CDT pluggin. it's also good.

link|flag
vote up 6 vote down

gdb will automatically debug functions in the library when they are called. just call it like

gdb ./foo
run

:) . Be sure you build foo with debugging flags (-g3 will enable all debugging stuffs for gcc :). You should not optimize when debugging (pass at most -O1 to gcc, do not optimize further). It can confuse the debugger.

link|flag

Your Answer

Get an OpenID
or

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