nuttx/libs/libc/machine/arm/armv8/Kconfig
Gregory Nutt cf99fb40c9 This commit moves all of the libraries under a common directory called libs/. This most certainly break libcxx and uClibc++ for now.
Squashed commit of the following:

    libs/libxx:  Fix some confusing in naming.  If the directory is called libxx, then the library must be libxx.a (unless perhaps LIBCXX is selected).
    libs/:  Fix paths in moved library directories.
    libs:  Brute force move of libc, libnx, and libxx to libs.  Cannot yet build it in that configuration.
2018-05-29 13:21:26 -06:00

28 lines
854 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_CORTEXM33
config ARMV8_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