nuttx/libs/libc/machine/arm/armv8-m/Kconfig
Xiang Xiao 74ab69af62 libs/libc/machine/arm: Rename armv8 to armv8-m
Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
2020-11-26 18:42:18 -03:00

28 lines
852 B
Plaintext

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
if ARCH_ARMV8M
config ARMV8M_LIBM
bool "Architecture specific optimizations"
default n
select LIBM_ARCH_CEIL if CONFIG_ARCH_DPFPU
select LIBM_ARCH_FLOOR if CONFIG_ARCH_DPFPU
select LIBM_ARCH_NEARBYINT if CONFIG_ARCH_DPFPU
select LIBM_ARCH_RINT if CONFIG_ARCH_DPFPU
select LIBM_ARCH_ROUND if CONFIG_ARCH_DPFPU
select LIBM_ARCH_TRUNC if CONFIG_ARCH_DPFPU
select LIBM_ARCH_CEILF if CONFIG_ARCH_FPU
select LIBM_ARCH_FLOORF if CONFIG_ARCH_FPU
select LIBM_ARCH_NEARBYINTF if CONFIG_ARCH_FPU
select LIBM_ARCH_RINTF if CONFIG_ARCH_FPU
select LIBM_ARCH_ROUNDF if CONFIG_ARCH_FPU
select LIBM_ARCH_TRUNCF if CONFIG_ARCH_FPU
depends on LIBM
---help---
Enable ARMv8 specific floating point optimizations.
endif