mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-28 05:36:32 +00:00
gdb: needs host-ncurses on the host
Commit 2474fb0bf1a786f3a170631f3dbce8b38092f986 ("host-gdb: enable terminal user interface support") has added TUI support to host gdb, and therefore added a dependency on host-ncurses when TUI support is enabled. However, host-ncurses is not only needed for TUI support, it is needed for gdb in all cases as well, so this commit adds a dependency of host-gdb to host-ncurses. Fixes: http://autobuild.buildroot.org/results/153/153dbdc42103074f7a0895e8871e2eee4eae3325/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
5d82540353
commit
c5579a0ea1
@ -40,8 +40,9 @@ GDB_DEPENDENCIES = ncurses
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
# For the host variant, we really want to build with XML support,
|
# For the host variant, we really want to build with XML support,
|
||||||
# which is needed to read XML descriptions of target architectures.
|
# which is needed to read XML descriptions of target architectures. We
|
||||||
HOST_GDB_DEPENDENCIES = host-expat
|
# also need ncurses.
|
||||||
|
HOST_GDB_DEPENDENCIES = host-expat host-ncurses
|
||||||
|
|
||||||
# Apply the Xtensa specific patches
|
# Apply the Xtensa specific patches
|
||||||
XTENSA_CORE_NAME = $(call qstrip, $(BR2_XTENSA_CORE_NAME))
|
XTENSA_CORE_NAME = $(call qstrip, $(BR2_XTENSA_CORE_NAME))
|
||||||
@ -127,7 +128,6 @@ HOST_GDB_CONF_OPT = \
|
|||||||
--disable-sim
|
--disable-sim
|
||||||
|
|
||||||
ifeq ($(BR2_PACKAGE_HOST_GDB_TUI),y)
|
ifeq ($(BR2_PACKAGE_HOST_GDB_TUI),y)
|
||||||
HOST_GDB_DEPENDENCIES += host-ncurses
|
|
||||||
HOST_GDB_CONF_OPT += --enable-tui
|
HOST_GDB_CONF_OPT += --enable-tui
|
||||||
else
|
else
|
||||||
HOST_GDB_CONF_OPT += --disable-tui
|
HOST_GDB_CONF_OPT += --disable-tui
|
||||||
|
Loading…
x
Reference in New Issue
Block a user