blob: e11fbd6fae782e65caadff6e989ead9d0d6871a8 [file] [log] [blame]
Namhyung Kimb11db652015-03-02 13:31:03 +09001ifndef ARCH
2ARCH := $(shell uname -m 2>/dev/null || echo not)
3endif
Jiri Olsaa6cf5f32014-01-03 15:32:32 +01004
Namhyung Kimb11db652015-03-02 13:31:03 +09005ARCH := $(shell echo $(ARCH) | sed -e s/i.86/x86/ -e s/x86_64/x86/ \
6 -e s/sun4u/sparc/ -e s/sparc64/sparc/ \
Wang Nan235504d2015-03-17 13:29:47 +00007 -e /arm64/!s/arm.*/arm/ -e s/sa110/arm/ \
Jiri Olsaa6cf5f32014-01-03 15:32:32 +01008 -e s/s390x/s390/ -e s/parisc64/parisc/ \
9 -e s/ppc.*/powerpc/ -e s/mips.*/mips/ \
Zhigang Lu620830b2014-02-11 11:03:48 +080010 -e s/sh[234].*/sh/ -e s/aarch64.*/arm64/ \
11 -e s/tile.*/tile/ )
Jiri Olsaa6cf5f32014-01-03 15:32:32 +010012
Namhyung Kimc6e5e9f2015-01-12 10:20:55 +080013LP64 := $(shell echo __LP64__ | ${CC} ${CFLAGS} -E -x c - | tail -n 1)
14ifeq ($(LP64), 1)
Adrian Huntere477f3f2014-10-23 18:16:03 -030015 IS_64_BIT := 1
Adrian Huntere477f3f2014-10-23 18:16:03 -030016else
Namhyung Kimc6e5e9f2015-01-12 10:20:55 +080017 IS_64_BIT := 0
Adrian Huntere477f3f2014-10-23 18:16:03 -030018endif