This is an automated email from the ASF dual-hosted git repository.
xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git
The following commit(s) were added to refs/heads/master by this push:
new f34ae4587 system/gdbstub: Add depends of LIB_GDBSTUB
f34ae4587 is described below
commit f34ae4587a27c18bcb1cafbb03be8e4b84581f2a
Author: wangjianyu3 <[email protected]>
AuthorDate: Fri Jul 18 15:05:23 2025 +0800
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 <[email protected]>
---
system/gdbstub/Kconfig | 1 +
1 file changed, 1 insertion(+)
diff --git a/system/gdbstub/Kconfig b/system/gdbstub/Kconfig
index 31c833b3b..94d92f6cc 100644
--- a/system/gdbstub/Kconfig
+++ b/system/gdbstub/Kconfig
@@ -5,6 +5,7 @@
config SYSTEM_GDBSTUB
tristate "GDBSTUB"
+ depends on LIB_GDBSTUB
---help---
Enable support for gdbstub.