fix HOST_ARCH and GNU_HOST_NAME for freebsd and other operating systems

git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@5027 3c298f89-4303-0410-b956-a3cf2f4a3e73
master
Felix Fietkau 2006-10-10 18:31:39 +00:00
parent 73de7f9a3e
commit 1eca9ee1b7
2 changed files with 1481 additions and 17 deletions

View File

@ -8,21 +8,20 @@
include $(TOPDIR)/.host.mk include $(TOPDIR)/.host.mk
$(TOPDIR)/.host.mk: $(INCLUDE_DIR)/host.mk $(TOPDIR)/.host.mk: $(INCLUDE_DIR)/host.mk
@echo "HOST_OS:=`uname`" > $@ @( \
@echo "HOST_ARCH:=` \ HOST_OS=`uname`; \
$(HOSTCC) -dumpmachine | sed -e s'/-.*//' \ case "$$HOST_OS" in \
-e 's/sparc.*/sparc/' \ Linux) HOST_ARCH=`uname -m`;; \
-e 's/arm.*/arm/' \ *) HOST_ARCH=`uname -p`;; \
-e 's/m68k.*/m68k/' \ esac; \
-e 's/ppc/powerpc/' \ GNU_HOST_NAME=`gcc -dumpmachine`; \
-e 's/v850.*/v850/' \ [ -n "$$GNU_HOST_NAME" ] || \
-e 's/sh[234]/sh/' \ GNU_HOST_NAME=`$(SCRIPT_DIR)/config.guess`; \
-e 's/mips-.*/mips/' \ echo "HOST_OS:=$$HOST_OS" > $@; \
-e 's/mipsel-.*/mipsel/' \ echo "HOST_ARCH:=$$HOST_ARCH" >> $@; \
-e 's/cris.*/cris/' \ echo "GNU_HOST_NAME:=$$GNU_HOST_NAME" >> $@; \
-e 's/i[3-9]86/i386/'`" >> $@ if tar --version 2>&1 | grep 'GNU' >/dev/null; then \
@echo "GNU_HOST_NAME:=`$(HOSTCC) -dumpmachine`" >> $@ echo "TAR_WILDCARDS:=--wildcards" >> $@; \
@if tar --version 2>&1 | grep 'GNU' >/dev/null; then \ fi; \
echo "TAR_WILDCARDS:=--wildcards" >> $@; \ )
fi

1465
scripts/config.guess vendored Executable file

File diff suppressed because it is too large Load Diff