summaryrefslogtreecommitdiff
path: root/utils/Makefile
diff options
context:
space:
mode:
authorManuel Novoa III <mjn3@codepoet.org>2003-11-24 04:23:31 +0000
committerManuel Novoa III <mjn3@codepoet.org>2003-11-24 04:23:31 +0000
commit433c0b2e61802f0020b6b6122bc6db0ba9633b86 (patch)
treeae2985533759205bca21768af72c79a1a63113cd /utils/Makefile
parent1d2ab22c46bd9c602481eb6ee7aa76306ebcca96 (diff)
Don't bother checking, since we want an error if -msoft-float doesn't work.
Diffstat (limited to 'utils/Makefile')
-rw-r--r--utils/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/Makefile b/utils/Makefile
index 57aed1780..705b23d27 100644
--- a/utils/Makefile
+++ b/utils/Makefile
@@ -80,8 +80,8 @@ endif
LDADD_LIBFLOAT=
ifeq ($(strip $(UCLIBC_HAS_SOFT_FLOAT)),y)
- override CFLAGS += $(call check_gcc,-msoft-float,CAN_NOT_SET_SOFT_FLOAT)
- #LDFLAGS+= -Wa,-mno-fpu
+# If -msoft-float isn't supported, we want an error anyway.
+ override CFLAGS += -msoft-float
ifeq ($(strip $(subst ",, $(strip $(TARGET_ARCH)))),arm)
LDADD_LIBFLOAT=-lfloat
endif