nuttx/libs/libc/debug/Kconfig
Xiang Xiao 4ba1bafe55 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
2021-06-30 05:08:57 -07:00

23 lines
694 B
Plaintext

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
# These are library functions that may be overriden by architecture-
# specific implementations. Not all architectures support implementations
# for every library function.
menu "Library Debugging"
config UNWINDER
bool "Stack Unwinder"
default "n"
---help---
This option enables stack unwinding support in NuttX
using the information automatically generated by the
compiler. The resulting image is slightly bigger but
the performance is not affected. Currently, this feature
only works with EABI compilers.
endmenu # Library Debugging Support