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.
|
|
|
|
#
|
|
|
|
|
2019-07-30 04:27:33 +02:00
|
|
|
if ARCH_ARMV7M
|
|
|
|
|
2023-05-12 14:54:10 +02:00
|
|
|
config ARMV7M_STRING_FUNCTION
|
|
|
|
bool "Enable optimized ARMv7M specific string function"
|
|
|
|
default n
|
|
|
|
depends on ARCH_TOOLCHAIN_GNU
|
|
|
|
select ARMV7M_MEMCHR
|
|
|
|
select ARMV7M_MEMCPY
|
|
|
|
select ARMV7M_MEMSET
|
|
|
|
select ARMV7M_MEMMOVE
|
|
|
|
select ARMV7M_STRCMP
|
2023-08-29 17:57:20 +02:00
|
|
|
select ARMV7M_STRCPY
|
2023-05-12 14:54:10 +02:00
|
|
|
select ARMV7M_STRLEN
|
|
|
|
|
2023-01-06 04:36:56 +01:00
|
|
|
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
|
|
|
|
|
2017-01-20 17:53:46 +01:00
|
|
|
config ARMV7M_MEMCPY
|
|
|
|
bool "Enable optimized memcpy() for ARMv7-M"
|
2019-07-30 04:27:33 +02:00
|
|
|
default n
|
2017-01-20 17:53:46 +01:00
|
|
|
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-M specific memcpy() library function
|
2019-07-30 04:27:33 +02:00
|
|
|
|
2023-01-06 04:36:56 +01:00
|
|
|
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
|
|
|
|
|
2023-03-14 14:02:03 +01:00
|
|
|
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
|
|
|
|
|
2023-01-06 04:36:56 +01:00
|
|
|
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
|
|
|
|
|
2019-07-30 04:27:33 +02:00
|
|
|
endif
|