vote up 9 vote down star
5

Is there a way to highlight and color gdb output during interactive debugging?

Please don't reply I should use ddd, nemiver, emacs, vim, or any other front-end, I just prefer gdb as it is, but would like to see its output with some terminal colors.

Thank you

flag

2  
It won't give you colors (so I won't call this an Answer), but some ~/.gdbinit configuration will improve the experience. I use this as a bare minimum: set history save on set print pretty set output-radix 16 set height 0 – divideandconquer.se Nov 19 '08 at 19:35

5 Answers

vote up 6 vote down check

gdb has no colors, you need to either:

  • write your own readline-based front-end,
  • or hack the code directly into gdb.

That would be a real nice hack, too.

link|flag
vote up 0 vote down

you can get whatever colors you want;

# gdb
(gdb) shell echo -en '\E[47;34m'"\033[1m"
...
anything is now blue foreground and white background
...
(gdb) shell tput sgr0
... back to normal
link|flag
vote up 0 vote down

cgdb is great tool. It is what I am exactly looking for. thanks Johan for your hints. /Kai

link|flag
Put a comment in Johan post instead – Jérôme Jul 10 at 12:06
I don't think Kai can comment until he gets more points... – Johan Jul 13 at 19:04
vote up 5 vote down

I know you did not want a frontend. But how about cgdb it is very close to gdb, it is textmode but has a source window above with syntax highlight on the code.

/Johan

link|flag
vote up 8 vote down

It's not colours, but I assume you're aware of gdb's text gui? I wasn't for a long time and it makes a vast difference to how usable gdb is.

For those not in the know, launch gdb with -tui

link|flag
ho! nice, I didn't know that – elmarco Dec 13 '08 at 12:53
Wow! Thanks! I've been looking for a long time for a nice graphical shell around gdb, and I have tried xxgdb, kgdb and ddd, but none of them worked very good for me, so I've stuck with the plain old command line interface. But this is absolutely perfect! – Thomas Padron-McCarthy Jan 10 at 19:47

Your Answer

Get an OpenID
or

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