2016-07-22 20:55:53 +08:00
|
|
|
HOSTARCH := $(shell uname -m | sed -e s/i.86/x86/ -e s/x86_64/x86/ \
|
2015-03-02 12:31:03 +08:00
|
|
|
-e s/sun4u/sparc/ -e s/sparc64/sparc/ \
|
2015-03-17 21:29:47 +08:00
|
|
|
-e /arm64/!s/arm.*/arm/ -e s/sa110/arm/ \
|
2014-01-03 22:32:32 +08:00
|
|
|
-e s/s390x/s390/ -e s/parisc64/parisc/ \
|
|
|
|
-e s/ppc.*/powerpc/ -e s/mips.*/mips/ \
|
2014-02-11 11:03:48 +08:00
|
|
|
-e s/sh[234].*/sh/ -e s/aarch64.*/arm64/ \
|
|
|
|
-e s/tile.*/tile/ )
|
2016-07-23 03:19:20 +08:00
|
|
|
|
2016-07-22 20:55:53 +08:00
|
|
|
ifndef ARCH
|
|
|
|
ARCH := $(HOSTARCH)
|
|
|
|
endif
|
2014-01-03 22:32:32 +08:00
|
|
|
|
2016-07-23 03:19:20 +08:00
|
|
|
SRCARCH := $(ARCH)
|
|
|
|
|
|
|
|
# Additional ARCH settings for x86
|
|
|
|
ifeq ($(ARCH),i386)
|
|
|
|
SRCARCH := x86
|
|
|
|
endif
|
|
|
|
ifeq ($(ARCH),x86_64)
|
|
|
|
SRCARCH := x86
|
|
|
|
endif
|
|
|
|
|
|
|
|
# Additional ARCH settings for sparc
|
|
|
|
ifeq ($(ARCH),sparc32)
|
|
|
|
SRCARCH := sparc
|
|
|
|
endif
|
|
|
|
ifeq ($(ARCH),sparc64)
|
|
|
|
SRCARCH := sparc
|
|
|
|
endif
|
|
|
|
|
|
|
|
# Additional ARCH settings for sh
|
|
|
|
ifeq ($(ARCH),sh64)
|
|
|
|
SRCARCH := sh
|
|
|
|
endif
|
|
|
|
|
|
|
|
# Additional ARCH settings for tile
|
|
|
|
ifeq ($(ARCH),tilepro)
|
|
|
|
SRCARCH := tile
|
|
|
|
endif
|
|
|
|
ifeq ($(ARCH),tilegx)
|
|
|
|
SRCARCH := tile
|
|
|
|
endif
|
|
|
|
|
2015-01-12 10:20:55 +08:00
|
|
|
LP64 := $(shell echo __LP64__ | ${CC} ${CFLAGS} -E -x c - | tail -n 1)
|
|
|
|
ifeq ($(LP64), 1)
|
2014-10-24 05:16:03 +08:00
|
|
|
IS_64_BIT := 1
|
|
|
|
else
|
2015-01-12 10:20:55 +08:00
|
|
|
IS_64_BIT := 0
|
2014-10-24 05:16:03 +08:00
|
|
|
endif
|