nuttx/libs/libc/machine/arm/armv7-m/Kconfig
XinStellaris 57df1ddcbb Add armv7m assembly strcpy.
Signed-off-by: XinStellaris <tianxin7@xiaomi.com>
2023-04-10 18:59:52 +03:00

65 lines
1.6 KiB
Plaintext

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
if ARCH_ARMV7M
config ARMV7M_MEMCHR
bool "Enable optimized memchr() for ARMv7-M"
default n
select LIBC_ARCH_MEMCHR
depends on ARCH_TOOLCHAIN_GNU
---help---
Enable optimized ARMv7-M specific memchr() library function
config ARMV7M_MEMCPY
bool "Enable optimized memcpy() for ARMv7-M"
default n
select LIBC_ARCH_MEMCPY
depends on ARCH_TOOLCHAIN_GNU
---help---
Enable optimized ARMv7-M specific memcpy() library function
config ARMV7M_MEMSET
bool "Enable optimized memset() for ARMv7-M"
default n
select LIBC_ARCH_MEMSET
depends on ARCH_TOOLCHAIN_GNU
---help---
Enable optimized ARMv7-M specific memset() library function
config ARMV7M_MEMMOVE
bool "Enable optimized memmove() for ARMv7-M"
default n
select LIBC_ARCH_MEMMOVE
depends on ARCH_TOOLCHAIN_GNU
---help---
Enable optimized ARMv7-M specific memmove() library function
config ARMV7M_STRCMP
bool "Enable optimized strcmp() for ARMv7-M"
default n
select LIBC_ARCH_STRCMP
depends on ARCH_TOOLCHAIN_GNU
---help---
Enable optimized ARMv7-M specific strcmp() library function
config ARMV7M_STRCPY
bool "Enable optimized strcpy() for ARMv7-M"
default n
select LIBC_ARCH_STRCPY
depends on ARCH_TOOLCHAIN_GNU
---help---
Enable optimized ARMv7-M specific strcpy() library function
config ARMV7M_STRLEN
bool "Enable optimized strlen() for ARMv7-M"
default n
select LIBC_ARCH_STRLEN
depends on ARCH_TOOLCHAIN_GNU
---help---
Enable optimized ARMv7-M specific strlen() library function
endif