Explorar el Código

Fix arm detection for libfloat.

Manuel Novoa III hace 22 años
padre
commit
db7ad6ef0f
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      utils/Makefile

+ 1 - 1
utils/Makefile

@@ -82,7 +82,7 @@ LDADD_LIBFLOAT=
 ifeq ($(strip $(UCLIBC_HAS_SOFT_FLOAT)),y)
     CFLAGS += $(call check_gcc,-msoft-float,)
     #LDFLAGS+= -Wa,-mno-fpu
-ifeq ($(strip $(TARGET_ARCH)),arm)
+ifeq ($(strip $(TARGET_ARCH)),"arm")
     LDADD_LIBFLOAT=-lfloat
 endif
 endif