nuttx/libs/libc/debug/Kconfig
chao.an 27dd771336 libc/execinfo: add backtrace support based on EABI Unwinder
1. Flags < -funwind-tables > is required
2. Keep the section ".exidx" in linker script

Signed-off-by: chao.an <anchao@xiaomi.com>
2021-04-19 04:45:04 -07:00

23 lines
704 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 EABI_UNWINDER
bool "EABI 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