2017-01-20 17:53:46 +01:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
|
|
#
|
|
|
|
|
2023-01-06 04:39:50 +01:00
|
|
|
config ARMV7R_MEMCHR
|
|
|
|
bool "Enable optimized memchr() for ARMv7-R"
|
|
|
|
default n
|
|
|
|
select LIBC_ARCH_MEMCHR
|
|
|
|
depends on ARCH_TOOLCHAIN_GNU
|
|
|
|
---help---
|
|
|
|
Enable optimized ARMv7-R specific memchr() library function
|
|
|
|
|
2017-01-20 17:53:46 +01:00
|
|
|
config ARMV7R_MEMCPY
|
|
|
|
bool "Enable optimized memcpy() for ARMv7-R"
|
|
|
|
select LIBC_ARCH_MEMCPY
|
2017-05-13 21:28:15 +02:00
|
|
|
depends on ARCH_TOOLCHAIN_GNU
|
2017-01-20 17:53:46 +01:00
|
|
|
---help---
|
|
|
|
Enable optimized ARMv7-R specific memcpy() library function
|
2023-01-06 04:39:50 +01:00
|
|
|
|
|
|
|
config ARMV7R_MEMMOVE
|
|
|
|
bool "Enable optimized memmove() for ARMv7-R"
|
|
|
|
default n
|
|
|
|
select LIBC_ARCH_MEMMOVE
|
|
|
|
depends on ARCH_TOOLCHAIN_GNU
|
|
|
|
---help---
|
|
|
|
Enable optimized ARMv7-R specific memmove() library function
|
|
|
|
|
|
|
|
config ARMV7R_MEMSET
|
|
|
|
bool "Enable optimized memset() for ARMv7-R"
|
|
|
|
default n
|
|
|
|
select LIBC_ARCH_MEMSET
|
|
|
|
depends on ARCH_TOOLCHAIN_GNU
|
|
|
|
depends on ARM_NEON
|
|
|
|
---help---
|
|
|
|
Enable optimized ARMv7-R specific memset() library function
|
|
|
|
|
|
|
|
config ARMV7R_STRCMP
|
|
|
|
bool "Enable optimized strcmp() for ARMv7-R"
|
|
|
|
default n
|
|
|
|
select LIBC_ARCH_STRCMP
|
|
|
|
depends on ARCH_TOOLCHAIN_GNU
|
|
|
|
---help---
|
|
|
|
Enable optimized ARMv7-R specific strcmp() library function
|
|
|
|
|
|
|
|
config ARMV7R_STRLEN
|
|
|
|
bool "Enable optimized strlen() for ARMv7-R"
|
|
|
|
default n
|
|
|
|
select LIBC_ARCH_STRLEN
|
|
|
|
depends on ARCH_TOOLCHAIN_GNU
|
|
|
|
---help---
|
|
|
|
Enable optimized ARMv7-R specific strlen() library function
|
|
|
|
|