Commit 3c9baee3 authored by Bernhard Reutner-Fischer's avatar Bernhard Reutner-Fischer
Browse files

- use centralized DISABLE_LARGEFILE

- nil CXX if there isn't one
parent 405aadb3
Loading
Loading
Loading
Loading
+7 −5
Original line number Diff line number Diff line
@@ -16,11 +16,6 @@ TAR_OPTIONS=$(subst ",, $(BR2_TAR_OPTIONS)) -xf
#")




ifneq ($(BR2_LARGEFILE),y)
DISABLE_LARGEFILE= --disable-largefile
endif
TARGET_CFLAGS=$(TARGET_OPTIMIZATION) $(TARGET_DEBUGGING)
HOSTCC:=gcc
HOSTCXX:=g++
@@ -101,4 +96,11 @@ else
DISABLE_NLS:=--disable-nls
endif

ifneq ($(BR2_LARGEFILE),y)
DISABLE_LARGEFILE= --disable-largefile
endif

ifeq ($(BR2_INSTALL_LIBSTDCPP),)
TARGET_CONFIGURE_OPTS+=CXX=""
endif
+0 −4
Original line number Diff line number Diff line
@@ -36,14 +36,10 @@ $(LIBSYSFS_DIR)/.unpacked: $(DL_DIR)/$(LIBSYSFS_SOURCE)
	$(LIBSYSFS_CAT) $(DL_DIR)/$(LIBSYSFS_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
	touch $(LIBSYSFS_DIR)/.unpacked

ifeq ($(BR2_INSTALL_LIBSTDCPP),)
LIBSYSFS_CXX:=CXX=""
endif
$(LIBSYSFS_DIR)/.configured: $(LIBSYSFS_DIR)/.unpacked
	(cd $(LIBSYSFS_DIR); \
	$(TARGET_CONFIGURE_OPTS) \
	CFLAGS="$(TARGET_CFLAGS) " \
	$(LIBSYSFS_CXX) \
	./configure \
	--target=$(GNU_TARGET_NAME) \
	--host=$(GNU_TARGET_NAME) \
+0 −4
Original line number Diff line number Diff line
@@ -34,15 +34,11 @@ ifneq ($(MPFR_PATCH),)
endif
	touch $(MPFR_DIR)/.unpacked

ifeq ($(BR2_INSTALL_LIBSTDCPP),)
MPFR_CXX:=CXX=""
endif
$(MPFR_DIR)/.configured: $(MPFR_DIR)/.unpacked $(STAGING_DIR)/lib/$(GMP_BINARY)
	(cd $(MPFR_DIR); rm -rf config.cache; \
		$(TARGET_CONFIGURE_OPTS) \
		CFLAGS="$(TARGET_CFLAGS)" \
		ac_cv_c_bigendian=$(MPFR_BE) \
		$(MPFR_CXX) \
		./configure \
		--host=$(REAL_GNU_TARGET_NAME) \
		--build=$(GNU_HOST_NAME) \