From: Manuel Novoa III Date: Thu, 30 Sep 2004 00:50:50 +0000 (-0000) Subject: Don't build libfloat unless we're using gcc 3.3.x. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b091812481bc9af92909dde3b836ddc78e81a4eb;p=buildroot.git Don't build libfloat unless we're using gcc 3.3.x. --- diff --git a/make/libfloat.mk b/make/libfloat.mk index dffef3de56..a7404fcdc6 100644 --- a/make/libfloat.mk +++ b/make/libfloat.mk @@ -12,9 +12,11 @@ LIBFLOAT_DIR:=$(BUILD_DIR)/libfloat LIBFLOAT_TARGET= ifeq ($(strip $(SOFT_FLOAT)),true) ifeq ("$(strip $(ARCH))","arm") +ifeq ($(findstring 3.3.,$(GCC_VERSION)),3.3.) LIBFLOAT_TARGET+=$(STAGING_DIR)/lib/libfloat.so endif endif +endif $(DL_DIR)/$(LIBFLOAT_SOURCE): $(WGET) -P $(DL_DIR) $(LIBFLOAT_SITE)/$(LIBFLOAT_SOURCE)