From f5e33b98394e9293b592d55e7dc29633e7eb20d7 Mon Sep 17 00:00:00 2001 From: Kevin Darbyshire-Bryant Date: Mon, 4 Sep 2017 20:20:12 +0100 Subject: [PATCH] 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 (backported from 900d86766b2a2122ea435d98aa50dc72d5dadf93) --- toolchain/gdb/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 \ -- 2.30.2