Files
nuttx-apps/system/gdbstub/Kconfig
wangjianyu3 f34ae4587a system/gdbstub: Add depends of LIB_GDBSTUB
in function `gdbstub_main':
undefined reference to `gdb_state_init'
undefined reference to `gdb_process'
undefined reference to `gdb_state_uninit'

Signed-off-by: wangjianyu3 <wangjianyu3@xiaomi.com>
2025-07-18 22:42:03 +08:00

27 lines
540 B
Plaintext

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
config SYSTEM_GDBSTUB
tristate "GDBSTUB"
depends on LIB_GDBSTUB
---help---
Enable support for gdbstub.
if SYSTEM_GDBSTUB
config SYSTEM_GDBSTUB_STACKSIZE
int "gdbstub stack size"
default DEFAULT_TASK_STACKSIZE
---help---
The size of stack allocated for the gdbstub task.
config SYSTEM_GDBSTUB_PRIORITY
int "gdbstub priority"
default 100
---help---
The priority of the gdbstub task.
endif