nuttx/libc/machine/Kconfig

61 lines
1.2 KiB
Plaintext
Raw Normal View History

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
# These are library functions that may be overriden by architecture-
# specific implementations. Not all architectures support implementations
# for every library function.
config LIBM_ARCH_CEIL
default n
depends on LIBM && ARCH_CORTEXM33
config LIBM_ARCH_FLOOR
default n
depends on LIBM && ARCH_CORTEXM33
config LIBM_ARCH_NEARBYINT
default n
depends on LIBM && ARCH_CORTEXM33
config LIBM_ARCH_RINT
default n
depends on LIBM && ARCH_CORTEXM33
config LIBM_ARCH_ROUND
default n
depends on LIBM && ARCH_CORTEXM33
config LIBM_ARCH_TRUNC
default n
depends on LIBM && ARCH_CORTEXM33
config LIBM_ARCH_CEILF
default n
depends on LIBM && ARCH_CORTEXM33
config LIBM_ARCH_FLOORF
default n
depends on LIBM && ARCH_CORTEXM33
config LIBM_ARCH_NEARBYINTF
default n
depends on LIBM && ARCH_CORTEXM33
config LIBM_ARCH_RINTF
default n
depends on LIBM && ARCH_CORTEXM33
config LIBM_ARCH_ROUNDF
default n
depends on LIBM && ARCH_CORTEXM33
config LIBM_ARCH_TRUNCF
default n
depends on LIBM && ARCH_CORTEXM33
if ARCH_CORTEXM33
source libc/machine/armv8/Kconfig
endif