Live data from Hacker News

Gdb: graphic (tui) mode

nicolasb.com.ar

1–10 of 11 posts

Re: Gdb: graphic (tui) mode

#9
post #7

Ubuntu/debian has a package called gdbtui which does exactly what gdb -tui does

Can't seem to find the package on Ubuntu 10.10, do I need to enable some repository?

EDIT: Apparently it was included in the basic gdb package or something.

Re: Gdb: graphic (tui) mode

#10
post #9
post #7

Ubuntu/debian has a package called gdbtui which does exactly what gdb -tui does

Can't seem to find the package on Ubuntu 10.10, do I need to enable some repository? EDIT: Apparently it was included in the basic gdb package or something.

It is a simple script.

cat `which gdbtui`

#!/bin/sh

prog=$(basename $0 tui)

dir=$(dirname $0) if [ "$dir" != "." ]; then prog=$dir/$prog fi

exec $prog --tui "$@"

Post reply on HN