diff options
author | Trevor Woerner <trevor@toganlabs.com> | 2018-09-06 09:55:33 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-09-11 09:05:29 +0100 |
commit | b4dd830e3407e1ebfbb13387fa359e356fd12ab9 (patch) | |
tree | 265011c445c2d78b0e4458e48e24bf1d85f40815 | |
parent | 8438e8f07c51a6564f5d9a681c57a6a813f1603a (diff) | |
download | openembedded-core-b4dd830e3407e1ebfbb13387fa359e356fd12ab9.tar.gz openembedded-core-b4dd830e3407e1ebfbb13387fa359e356fd12ab9.tar.bz2 openembedded-core-b4dd830e3407e1ebfbb13387fa359e356fd12ab9.zip |
gdb: PACKAGECONFIG for tui
Allow the tui (Terminal User Interface) option to be set via a PACKAGECONFIG.
Signed-off-by: Trevor Woerner <trevor@toganlabs.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
-rw-r--r-- | meta/recipes-devtools/gdb/gdb-common.inc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/recipes-devtools/gdb/gdb-common.inc b/meta/recipes-devtools/gdb/gdb-common.inc index 05bda5a7f5..fa64939f26 100644 --- a/meta/recipes-devtools/gdb/gdb-common.inc +++ b/meta/recipes-devtools/gdb/gdb-common.inc @@ -20,7 +20,7 @@ EXTRA_OEMAKE = "'SUBDIRS=intl mmalloc libiberty opcodes bfd sim gdb etc utils'" EXPAT = "--with-expat --with-libexpat-prefix=${STAGING_DIR_HOST}" -EXTRA_OECONF = "--disable-gdbtk --disable-tui --disable-x --disable-werror \ +EXTRA_OECONF = "--disable-gdbtk --disable-x --disable-werror \ --with-curses --disable-multilib --disable-sim \ --without-lzma --without-guile \ ${GDBPROPREFIX} ${EXPAT} \ @@ -36,6 +36,8 @@ PACKAGECONFIG ??= "readline" PACKAGECONFIG[readline] = "--with-system-readline,--without-system-readline,readline" PACKAGECONFIG[python] = "--with-python=${WORKDIR}/python,--without-python,python3,python3 python3-codecs" PACKAGECONFIG[babeltrace] = "--with-babeltrace,--without-babeltrace,babeltrace" +# ncurses is already a hard DEPENDS, but would be added here if it weren't +PACKAGECONFIG[tui] = "--enable-tui,--disable-tui" GDBPROPREFIX = "--program-prefix=''" |