diff options
author | Kevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk> | 2017-09-04 20:20:12 +0100 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2018-12-18 09:44:04 +0100 |
commit | f5e33b98394e9293b592d55e7dc29633e7eb20d7 (patch) | |
tree | 4fbbc76b258b9d7079d6ae8f8cc44cf4f1072eed /toolchain/gdb | |
parent | 3341376e0bed6b9928b338c1eec6ac1578727390 (diff) | |
download | upstream-f5e33b98394e9293b592d55e7dc29633e7eb20d7.tar.gz upstream-f5e33b98394e9293b592d55e7dc29633e7eb20d7.tar.bz2 upstream-f5e33b98394e9293b592d55e7dc29633e7eb20d7.zip |
toolchain: gdb: enable TUI
The GDB Text User Interface (TUI) is a terminal interface
which uses the curses library to show the source file,
the assembly output, the program registers and GDB
commands in separate text windows.
In other words it's a friendlier interface for idiots like me!
Signed-off-by: Kevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk>
(backported from 900d86766b2a2122ea435d98aa50dc72d5dadf93)
Diffstat (limited to 'toolchain/gdb')
-rw-r--r-- | toolchain/gdb/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolchain/gdb/Makefile b/toolchain/gdb/Makefile index 5c80eef9aa..fda3401961 100644 --- a/toolchain/gdb/Makefile +++ b/toolchain/gdb/Makefile @@ -41,7 +41,7 @@ HOST_CONFIGURE_ARGS = \ --target=$(REAL_GNU_TARGET_NAME) \ --disable-werror \ --without-uiout \ - --disable-tui --disable-gdbtk --without-x \ + --enable-tui --disable-gdbtk --without-x \ --without-included-gettext \ --enable-threads \ --with-expat \ |