mirror of
https://github.com/apache/nuttx.git
synced 2026-08-04 22:00:21 +00:00
Optimize libc string apis(memcpy/memset/memmove/memchr/strcmp/strlen) with arm32 assembly instruction including vfp and neon. Add arch releated elf parsing Signed-off-by: Jinliang Li <lijinliang1@lixiang.com>
33 lines
706 B
Text
33 lines
706 B
Text
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
#
|
|
|
|
if ARCH_ARM7TDMI || ARCH_ARM920T || ARCH_ARM926EJS || \
|
|
ARCH_ARM1136J || ARCH_ARM1156T2 || ARCH_ARM1176JZ
|
|
source "libs/libc/machine/arm/arm/Kconfig"
|
|
endif
|
|
|
|
if ARCH_ARMV7A
|
|
source "libs/libc/machine/arm/armv7-a/Kconfig"
|
|
endif
|
|
|
|
if ARCH_ARMV7R
|
|
source "libs/libc/machine/arm/armv7-r/Kconfig"
|
|
endif
|
|
|
|
if ARCH_ARMV6M
|
|
source "libs/libc/machine/arm/armv6-m/Kconfig"
|
|
endif
|
|
|
|
if ARCH_ARMV7M
|
|
source "libs/libc/machine/arm/armv7-m/Kconfig"
|
|
endif
|
|
|
|
if ARCH_ARMV8M
|
|
source "libs/libc/machine/arm/armv8-m/Kconfig"
|
|
endif
|
|
|
|
if ARCH_ARMV8R
|
|
source "libs/libc/machine/arm/armv8-r/Kconfig"
|
|
endif
|