mirror of
https://github.com/apache/nuttx.git
synced 2026-05-28 20:08:15 +08:00
libc/debug: Rename CONFIG_EABI_UNWINDER to CONFIG_UNWINDER
since the unwinder not only work with arm but also other arch(e.g. riscv) Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com> Change-Id: I56cc54f2c99560c858362ab2dfba524097385716
This commit is contained in:
committed by
David Sidrane
parent
181ad49ffd
commit
4ba1bafe55
+1
-1
@@ -34,7 +34,7 @@ extern "C"
|
|||||||
#define EXTERN extern
|
#define EXTERN extern
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_EABI_UNWINDER)
|
#if defined(CONFIG_UNWINDER)
|
||||||
|
|
||||||
/* Store up to SIZE return address of the current program state in
|
/* Store up to SIZE return address of the current program state in
|
||||||
* ARRAY and return the exact number of values stored.
|
* ARRAY and return the exact number of values stored.
|
||||||
|
|||||||
@@ -9,8 +9,8 @@
|
|||||||
|
|
||||||
menu "Library Debugging"
|
menu "Library Debugging"
|
||||||
|
|
||||||
config EABI_UNWINDER
|
config UNWINDER
|
||||||
bool "EABI Stack Unwinder"
|
bool "Stack Unwinder"
|
||||||
default "n"
|
default "n"
|
||||||
---help---
|
---help---
|
||||||
This option enables stack unwinding support in NuttX
|
This option enables stack unwinding support in NuttX
|
||||||
|
|||||||
@@ -18,7 +18,7 @@
|
|||||||
#
|
#
|
||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
ifeq ($(CONFIG_EABI_UNWINDER),y)
|
ifeq ($(CONFIG_UNWINDER),y)
|
||||||
|
|
||||||
CSRCS += lib_backtrace.c lib_dumpstack.c
|
CSRCS += lib_backtrace.c lib_dumpstack.c
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user