You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by ar...@apache.org on 2021/12/29 05:34:07 UTC

[incubator-nuttx] branch master updated: arch: Select ARCH_HAVE_BACKTRACE in Kconfig for supported arch

This is an automated email from the ASF dual-hosted git repository.

archer pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git


The following commit(s) were added to refs/heads/master by this push:
     new 186ac17  arch: Select ARCH_HAVE_BACKTRACE in Kconfig for supported arch
186ac17 is described below

commit 186ac17f1f9d0793f747e5f976438875a52a63ab
Author: Xiang Xiao <xi...@xiaomi.com>
AuthorDate: Sat Dec 25 23:06:55 2021 +0800

    arch: Select ARCH_HAVE_BACKTRACE in Kconfig for supported arch
    
    Signed-off-by: Xiang Xiao <xi...@xiaomi.com>
---
 arch/Kconfig | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/arch/Kconfig b/arch/Kconfig
index e930eeb..6c9af63 100644
--- a/arch/Kconfig
+++ b/arch/Kconfig
@@ -9,6 +9,7 @@ choice
 
 config ARCH_ARM
 	bool "ARM"
+	select ARCH_HAVE_BACKTRACE
 	select ARCH_HAVE_INTERRUPTSTACK
 	select ARCH_HAVE_VFORK
 	select ARCH_HAVE_STACKCHECK
@@ -59,6 +60,7 @@ config ARCH_RENESAS
 
 config ARCH_RISCV
 	bool "RISC-V"
+	select ARCH_HAVE_BACKTRACE
 	select ARCH_HAVE_INTERRUPTSTACK
 	select ARCH_HAVE_STACKCHECK
 	select ARCH_HAVE_CUSTOMOPT
@@ -71,6 +73,7 @@ config ARCH_RISCV
 
 config ARCH_SIM
 	bool "Simulation"
+	select ARCH_HAVE_BACKTRACE
 	select ARCH_HAVE_MULTICPU
 	select ARCH_HAVE_RTC_SUBSECONDS
 	select ARCH_HAVE_SERIAL_TERMIOS
@@ -100,6 +103,7 @@ config ARCH_X86_64
 
 config ARCH_XTENSA
 	bool "Xtensa"
+	select ARCH_HAVE_BACKTRACE
 	select ARCH_HAVE_INTERRUPTSTACK
 	select ARCH_HAVE_STACKCHECK
 	select ARCH_HAVE_CUSTOMOPT