2017-01-21 13:43:45 -06:00
|
|
|
#
|
|
|
|
|
# For a description of the syntax of this configuration file,
|
|
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
|
|
|
#
|
|
|
|
|
|
2020-11-26 19:59:11 +08:00
|
|
|
if ARCH_ARM7TDMI || ARCH_ARM920T || ARCH_ARM926EJS || \
|
|
|
|
|
ARCH_ARM1136J || ARCH_ARM1156T2 || ARCH_ARM1176JZ
|
2021-07-20 13:10:10 +02:00
|
|
|
source "libs/libc/machine/arm/arm/Kconfig"
|
2017-01-21 15:40:51 -06:00
|
|
|
endif
|
|
|
|
|
|
2020-11-26 19:59:11 +08:00
|
|
|
if ARCH_ARMV7A
|
2021-07-20 13:10:10 +02:00
|
|
|
source "libs/libc/machine/arm/armv7-a/Kconfig"
|
2017-01-21 13:43:45 -06:00
|
|
|
endif
|
|
|
|
|
|
2020-11-26 19:59:11 +08:00
|
|
|
if ARCH_ARMV7R
|
2021-07-20 13:10:10 +02:00
|
|
|
source "libs/libc/machine/arm/armv7-r/Kconfig"
|
2017-01-21 13:43:45 -06:00
|
|
|
endif
|
|
|
|
|
|
2020-11-26 19:59:11 +08:00
|
|
|
if ARCH_ARMV6M
|
2021-07-20 13:10:10 +02:00
|
|
|
source "libs/libc/machine/arm/armv6-m/Kconfig"
|
2017-01-21 15:24:25 -06:00
|
|
|
endif
|
|
|
|
|
|
2020-11-26 19:59:11 +08:00
|
|
|
if ARCH_ARMV7M
|
2021-07-20 13:10:10 +02:00
|
|
|
source "libs/libc/machine/arm/armv7-m/Kconfig"
|
2017-01-21 13:43:45 -06:00
|
|
|
endif
|
|
|
|
|
|
2020-11-26 19:59:11 +08:00
|
|
|
if ARCH_ARMV8M
|
2021-07-20 13:10:10 +02:00
|
|
|
source "libs/libc/machine/arm/armv8-m/Kconfig"
|
2017-01-21 13:43:45 -06:00
|
|
|
endif
|
2024-11-08 13:44:58 +08:00
|
|
|
|
|
|
|
|
if ARCH_ARMV8R
|
|
|
|
|
source "libs/libc/machine/arm/armv8-r/Kconfig"
|
|
|
|
|
endif
|
2025-03-19 22:48:47 +08:00
|
|
|
|
|
|
|
|
config LIBC_ARCH_CRC32
|
|
|
|
|
bool "Enable optimized crc32 for ARM"
|
|
|
|
|
default n
|
|
|
|
|
depends on ARCH_HAVE_CRC32
|
|
|
|
|
---help---
|
|
|
|
|
Enable optimized arm neon specific crc32 library function
|