10

Is there any interactive or more user-friendly version (or substitution) of GDB for debugging?

Some people suggested CGDB, but after a few tests I found it buggy and unstable.

Rinzwind
  • 299,756
xzhu
  • 327

4 Answers4

11

There are multiple graphical frontends for gdb. GNU DDD and KGDB to mention a couple.

GNU DDD: enter image description here

KGDB: enter image description here

Update: I failed to mention that gdb actually has a built in text-based user interface if you run it with gdb -tui: enter image description here

Egil
  • 14,162
2

GDB Dashboard

https://github.com/cyrus-and/gdb-dashboard

GDB dashboard uses the official GDB Python API and prints the information that you want when GDB stops e.g. after a next, like the native display command.

Vs TUI:

enter image description here

I believe that GDB should ship with a setup like that out of the box and turned on by default, it would attract much more users that way.

Oh, and the main developer, Andrea Cardaci, has been very responsive and awesome. Big kudos.

See also: https://stackoverflow.com/questions/209534/how-to-highlight-and-color-gdb-output-during-interactive-debugging/17341335#17341335

1

There's a list of gdb frontends at http://sourceware.org/gdb/wiki/GDB%20Front%20Ends

This unfortunately gives only further links, but no hints about scope and usability which varies a lot there. I'd recommend to use a frontend that is in active development as gdb itself changes a lot.

yum
  • 11
0

You can use GDBFrontend: https://github.com/rohanrhu/gdb-frontend

GDBFrontend Screenshot

Usage video: https://www.youtube.com/watch?v=z44KJDYZOoE