mirror of
https://git.busybox.net/buildroot.git
synced 2025-01-15 17:03:30 +08:00
Don't build libfloat unless we're using gcc 3.3.x.
This commit is contained in:
parent
d082261161
commit
b091812481
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user