diff mbox

[v2] host-gdb: enable terminal user interface support

Message ID 1409349962-6611-1-git-send-email-yegorslists@googlemail.com
State Accepted
Headers show

Commit Message

Yegor Yefremov Aug. 29, 2014, 10:06 p.m. UTC
Add a configuration option to compile host-gdb with
--enbale-tui switch.

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
---
Changes:
	v2: as there is no package like HOST_NCURSES, don't select anything (Thomas Petazzoni)

 package/gdb/Config.in.host | 5 +++++
 package/gdb/gdb.mk         | 8 +++++++-
 2 files changed, 12 insertions(+), 1 deletion(-)

Comments

Peter Korsgaard Aug. 30, 2014, 7:04 a.m. UTC | #1
>>>>> "Yegor" == Yegor Yefremov <yegorslists@googlemail.com> writes:

 > Add a configuration option to compile host-gdb with
 > --enbale-tui switch.

Committed to next with the commit message fixed, thanks.
diff mbox

Patch

diff --git a/package/gdb/Config.in.host b/package/gdb/Config.in.host
index cbc1361..e48dc10 100644
--- a/package/gdb/Config.in.host
+++ b/package/gdb/Config.in.host
@@ -13,6 +13,11 @@  config BR2_PACKAGE_HOST_GDB
 
 if BR2_PACKAGE_HOST_GDB
 
+config BR2_PACKAGE_HOST_GDB_TUI
+	bool "GDB TUI support"
+	help
+	  This option enables terminal user interface (TUI) for gdb
+
 choice
 	prompt "GDB debugger Version"
 	depends on !BR2_arc
diff --git a/package/gdb/gdb.mk b/package/gdb/gdb.mk
index 8ab264b..7e87bf9 100644
--- a/package/gdb/gdb.mk
+++ b/package/gdb/gdb.mk
@@ -114,7 +114,6 @@  HOST_GDB_CONF_OPT = \
 	--target=$(GNU_TARGET_NAME) \
 	--enable-static --disable-shared \
 	--without-uiout \
-	--disable-tui \
 	--disable-gdbtk \
 	--without-x \
 	--enable-threads \
@@ -123,6 +122,13 @@  HOST_GDB_CONF_OPT = \
 	$(GDB_DISABLE_BINUTILS_CONF_OPT) \
 	--disable-sim
 
+ifeq ($(BR2_PACKAGE_HOST_GDB_TUI),y)
+	HOST_GDB_DEPENDENCIES += host-ncurses
+	HOST_GDB_CONF_OPT += --enable-tui
+else
+	HOST_GDB_CONF_OPT += --disable-tui
+endif
+
 ifeq ($(GDB_FROM_GIT),y)
 HOST_GDB_DEPENDENCIES += host-texinfo
 else