2015-03-02 04:31:03 +00:00
|
|
|
ifndef ARCH
|
|
|
|
ARCH := $(shell uname -m 2>/dev/null || echo not)
|
|
|
|
endif
|
2014-01-03 14:32:32 +00:00
|
|
|
|
2015-03-02 04:31:03 +00:00
|
|
|
ARCH := $(shell echo $(ARCH) | sed -e s/i.86/x86/ -e s/x86_64/x86/ \
|
|
|
|
-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/ )
|
2014-01-03 14:32:32 +00:00
|
|
|
|
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
|