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