From baabe5e08a2d358ba980812bef4c7a0a673fb0a9 Mon Sep 17 00:00:00 2001 From: Xiang Xiao Date: Thu, 26 Nov 2020 20:27:27 +0800 Subject: [PATCH] libs/libc/machine: Remove ARCH_CORTEXM33 dependence from LIBM_ARCH_xxx Signed-off-by: Xiang Xiao --- libs/libc/machine/Kconfig | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/libs/libc/machine/Kconfig b/libs/libc/machine/Kconfig index 19163c9d45..f0f439f099 100644 --- a/libs/libc/machine/Kconfig +++ b/libs/libc/machine/Kconfig @@ -100,62 +100,62 @@ config LIBC_ARCH_ELF_64BIT config LIBM_ARCH_CEIL bool default n - depends on LIBM && ARCH_CORTEXM33 + depends on LIBM config LIBM_ARCH_FLOOR bool default n - depends on LIBM && ARCH_CORTEXM33 + depends on LIBM config LIBM_ARCH_NEARBYINT bool default n - depends on LIBM && ARCH_CORTEXM33 + depends on LIBM config LIBM_ARCH_RINT bool default n - depends on LIBM && ARCH_CORTEXM33 + depends on LIBM config LIBM_ARCH_ROUND bool default n - depends on LIBM && ARCH_CORTEXM33 + depends on LIBM config LIBM_ARCH_TRUNC bool default n - depends on LIBM && ARCH_CORTEXM33 + depends on LIBM config LIBM_ARCH_CEILF bool default n - depends on LIBM && ARCH_CORTEXM33 + depends on LIBM config LIBM_ARCH_FLOORF bool default n - depends on LIBM && ARCH_CORTEXM33 + depends on LIBM config LIBM_ARCH_NEARBYINTF bool default n - depends on LIBM && ARCH_CORTEXM33 + depends on LIBM config LIBM_ARCH_RINTF bool default n - depends on LIBM && ARCH_CORTEXM33 + depends on LIBM config LIBM_ARCH_ROUNDF bool default n - depends on LIBM && ARCH_CORTEXM33 + depends on LIBM config LIBM_ARCH_TRUNCF bool default n - depends on LIBM && ARCH_CORTEXM33 + depends on LIBM # One or more the of above may be selected by architecture specific logic