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
|
|
|
|
|
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
|
|
|
|
select MACHINE_OPTS_ARMV7M
|
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
|
|
|
|
|
|
|
config ARMV7M_LIBM
|
|
|
|
bool "Architecture specific FPU optimizations"
|
|
|
|
default n
|
|
|
|
select MACHINE_OPTS_ARMV7M
|
|
|
|
select LIBM_ARCH_FABSF
|
|
|
|
select LIBM_ARCH_SQRTF
|
|
|
|
depends on ARCH_FPU
|
|
|
|
depends on LIBM
|
|
|
|
---help---
|
|
|
|
Enable ARMv7E-M specific floating point optimizations
|
|
|
|
for fabsf() and fsqrtf()
|
|
|
|
|
|
|
|
config MACHINE_OPTS_ARMV7M
|
|
|
|
bool
|
|
|
|
default n
|
|
|
|
|
|
|
|
config LIBM_ARCH_FABSF
|
|
|
|
bool
|
|
|
|
default n
|
|
|
|
|
|
|
|
config LIBM_ARCH_SQRTF
|
|
|
|
bool
|
|
|
|
default n
|
|
|
|
|
|
|
|
endif
|