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

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


The following commit(s) were added to refs/heads/master by this push:
     new bbec17daff sim/kconfig: select ARCH_TOOLCHAIN_GNU
bbec17daff is described below

commit bbec17daff89f3cbadf8c4de8c8d65e6779a6584
Author: W-M-R <[email protected]>
AuthorDate: Sun Apr 7 16:38:03 2024 +0800

    sim/kconfig: select ARCH_TOOLCHAIN_GNU
    
    Missing ARCH_TOOLCHAIN_GNU option causes sim's kasan recursion
    
    Signed-off-by: W-M-R <[email protected]>
---
 arch/sim/Kconfig | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/arch/sim/Kconfig b/arch/sim/Kconfig
index ed410099db..86a83eea20 100644
--- a/arch/sim/Kconfig
+++ b/arch/sim/Kconfig
@@ -15,18 +15,22 @@ config HOST_X86_64
        select ARCH_HAVE_STACKCHECK
        select LIBC_ARCH_ELF_64BIT if LIBC_ARCH_ELF && !SIM_M32
        select ARCH_HAVE_MATH_H
+       select ARCH_TOOLCHAIN_GNU
 
 config HOST_X86
        bool "x86"
        select ARCH_HAVE_STACKCHECK
+       select ARCH_TOOLCHAIN_GNU
 
 config HOST_ARM
        bool "arm"
        select ARCH_HAVE_STACKCHECK
+       select ARCH_TOOLCHAIN_GNU
 
 config HOST_ARM64
        bool "arm64"
        select ARCH_HAVE_STACKCHECK
+       select ARCH_TOOLCHAIN_GNU
 
 endchoice # Host CPU Type
 

Reply via email to