mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-23 23:32:49 +02:00
fix build error in tools on darwin on newer macs (patch by dirtyfreebooter)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@22934 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
bebb0ec8a1
commit
a37b2b1bf9
@ -32,11 +32,12 @@ $(TMP_DIR)/.host.mk: $(TOPDIR)/include/host.mk
|
||||
HOST_OS=`uname`; \
|
||||
case "$$HOST_OS" in \
|
||||
Linux) HOST_ARCH=`uname -m`;; \
|
||||
Darwin) HOST_ARCH=`uname -m`;; \
|
||||
*) HOST_ARCH=`uname -p`;; \
|
||||
esac; \
|
||||
GNU_HOST_NAME=`gcc -dumpmachine`; \
|
||||
[ -n "$$GNU_HOST_NAME" ] || \
|
||||
GNU_HOST_NAME=`$(SCRIPT_DIR)/config.guess`; \
|
||||
[ -z "$$GNU_HOST_NAME" -o "$$HOST_OS" == "Darwin" ] && \
|
||||
GNU_HOST_NAME=`$(TOPDIR)/scripts/config.guess`; \
|
||||
echo "HOST_OS:=$$HOST_OS" > $@; \
|
||||
echo "HOST_ARCH:=$$HOST_ARCH" >> $@; \
|
||||
echo "GNU_HOST_NAME:=$$GNU_HOST_NAME" >> $@; \
|
||||
|
@ -17,11 +17,6 @@ include $(INCLUDE_DIR)/host-build.mk
|
||||
|
||||
unexport CFLAGS
|
||||
|
||||
ifeq ($(HOST_OS),Darwin)
|
||||
GNU_HOST_NAME:=
|
||||
HOST_CONFIGURE_ARGS:=$(filter-out --target= --build= --host=,$(HOST_CONFIGURE_ARGS))
|
||||
endif
|
||||
|
||||
HOST_CONFIGURE_VARS += \
|
||||
LIBS=-lstdc++
|
||||
|
||||
|
@ -17,11 +17,6 @@ include $(INCLUDE_DIR)/host-build.mk
|
||||
|
||||
unexport CFLAGS
|
||||
|
||||
ifeq ($(HOST_OS),Darwin)
|
||||
GNU_HOST_NAME:=
|
||||
HOST_CONFIGURE_ARGS:=$(filter-out --target= --build= --host=,$(HOST_CONFIGURE_ARGS))
|
||||
endif
|
||||
|
||||
HOST_CONFIGURE_ARGS += \
|
||||
--enable-static \
|
||||
--disable-shared \
|
||||
|
@ -17,11 +17,6 @@ include $(INCLUDE_DIR)/host-build.mk
|
||||
|
||||
unexport CFLAGS
|
||||
|
||||
ifeq ($(HOST_OS),Darwin)
|
||||
GNU_HOST_NAME:=
|
||||
HOST_CONFIGURE_ARGS:=$(filter-out --target= --build= --host=,$(HOST_CONFIGURE_ARGS))
|
||||
endif
|
||||
|
||||
HOST_CONFIGURE_ARGS += \
|
||||
--enable-static \
|
||||
--disable-shared \
|
||||
|
@ -17,11 +17,6 @@ include $(INCLUDE_DIR)/host-build.mk
|
||||
|
||||
unexport CFLAGS
|
||||
|
||||
ifeq ($(HOST_OS),Darwin)
|
||||
GNU_HOST_NAME:=
|
||||
HOST_CONFIGURE_ARGS:=$(filter-out --target= --build= --host=,$(HOST_CONFIGURE_ARGS))
|
||||
endif
|
||||
|
||||
HOST_CONFIGURE_ARGS += \
|
||||
--enable-static \
|
||||
--disable-shared
|
||||
|
Loading…
Reference in New Issue
Block a user