Browse Source

Don't bother checking, since we want an error if -msoft-float doesn't work.

Manuel Novoa III 21 years ago
parent
commit
433c0b2e61
1 changed files with 2 additions and 2 deletions
  1. 2 2
      utils/Makefile

+ 2 - 2
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