frontend debugger?

D

desktop

Can anyone recommend a good frontend C++ debugger for linux?

I could be nice if it also could show where in the code the current
execution is. I am using Kate as my editor (i don't want to use one of
the heavy weight editors like eclipse with build in debugging).
 
X

xman

Can anyone recommend a good frontend C++ debugger for linux?

For free debugger, try ddd.
 
?

=?ISO-8859-1?Q?Erik_Wikstr=F6m?=

Can anyone recommend a good frontend C++ debugger for linux?

I could be nice if it also could show where in the code the current
execution is. I am using Kate as my editor (i don't want to use one of
the heavy weight editors like eclipse with build in debugging).

This is off-topic please ask platform specific questions in platform
specific groups.

As to your question, what's wrong with gdb? If you can't see where in
the code the execution currently is you must have forgotten to add debug
symbols when compiling, make sure that you have -g in the command line.

The only frontend that I know of is ddd.
 
Z

Zeppe

Erik said:
As to your question, what's wrong with gdb? If you can't see where in
the code the execution currently is you must have forgotten to add debug
symbols when compiling, make sure that you have -g in the command line.

unfortunately gdb is not as powerful as the microsoft equivalent one
(that is able to correctly interpret some of the STL containers, such
vectors, and let you navigate inside them), but in some cases it's good
enough.

The only frontend that I know of is ddd.

kdbg, quite simple, nice interface, maybe a little less powerful but
usually it does its job in a good way.

Regards,

Zeppe
 
?

=?ISO-8859-1?Q?Erik_Wikstr=F6m?=

unfortunately gdb is not as powerful as the microsoft equivalent one
(that is able to correctly interpret some of the STL containers, such
vectors, and let you navigate inside them), but in some cases it's good
enough.

OT: You can even make it interpret your own data-types, but there's some
bugs that prevents it from working correctly with 2D matrices and such.
 
I

Ian Collins

Zeppe said:
unfortunately gdb is not as powerful as the microsoft equivalent one
(that is able to correctly interpret some of the STL containers, such
vectors, and let you navigate inside them), but in some cases it's good
enough.
If you require a "powerful" debugger, there is something wrong with the
way you are developing your code!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,768
Messages
2,569,575
Members
45,053
Latest member
billing-software

Latest Threads

Top