mirror of
https://github.com/apache/nuttx-apps.git
synced 2025-10-17 15:32:21 +08:00

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>
27 lines
540 B
Plaintext
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
|