mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-10 00:04:06 -09:00
Don't build libfloat unless we're using gcc 3.3.x.
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user