aboutsummaryrefslogtreecommitdiffstats
path: root/tools/scripts
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <acme@redhat.com>2016-07-22 08:55:53 -0400
committerArnaldo Carvalho de Melo <acme@redhat.com>2016-07-22 15:25:45 -0400
commit0a943cb10ce783a1c55adf6f52f62bcbd5f49314 (patch)
tree6bed4a7134ec1aa93cd82b34ee7d0146a1ae2861 /tools/scripts
parente5e6312b5bc74c6f119993f32257927a6b646bd7 (diff)
tools build: Add HOSTARCH Makefile variable
For tools that needs to be always compiled with the host headers. Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: David Ahern <dsahern@gmail.com> Cc: Jiri Olsa <jolsa@kernel.org> Cc: Josh Poimboeuf <jpoimboe@redhat.com> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Stephen Rothwell <sfr@canb.auug.org.au> Cc: Wang Nan <wangnan0@huawei.com> Link: http://lkml.kernel.org/n/tip-907q32k2nep6q670dkxypmu6@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/scripts')
-rw-r--r--tools/scripts/Makefile.arch9
1 files changed, 4 insertions, 5 deletions
diff --git a/tools/scripts/Makefile.arch b/tools/scripts/Makefile.arch
index e11fbd6fae78..887321ce5827 100644
--- a/tools/scripts/Makefile.arch
+++ b/tools/scripts/Makefile.arch
@@ -1,14 +1,13 @@
1ifndef ARCH 1HOSTARCH := $(shell uname -m | sed -e s/i.86/x86/ -e s/x86_64/x86/ \
2ARCH := $(shell uname -m 2>/dev/null || echo not)
3endif
4
5ARCH := $(shell echo $(ARCH) | sed -e s/i.86/x86/ -e s/x86_64/x86/ \
6 -e s/sun4u/sparc/ -e s/sparc64/sparc/ \ 2 -e s/sun4u/sparc/ -e s/sparc64/sparc/ \
7 -e /arm64/!s/arm.*/arm/ -e s/sa110/arm/ \ 3 -e /arm64/!s/arm.*/arm/ -e s/sa110/arm/ \
8 -e s/s390x/s390/ -e s/parisc64/parisc/ \ 4 -e s/s390x/s390/ -e s/parisc64/parisc/ \
9 -e s/ppc.*/powerpc/ -e s/mips.*/mips/ \ 5 -e s/ppc.*/powerpc/ -e s/mips.*/mips/ \
10 -e s/sh[234].*/sh/ -e s/aarch64.*/arm64/ \ 6 -e s/sh[234].*/sh/ -e s/aarch64.*/arm64/ \
11 -e s/tile.*/tile/ ) 7 -e s/tile.*/tile/ )
8ifndef ARCH
9ARCH := $(HOSTARCH)
10endif
12 11
13LP64 := $(shell echo __LP64__ | ${CC} ${CFLAGS} -E -x c - | tail -n 1) 12LP64 := $(shell echo __LP64__ | ${CC} ${CFLAGS} -E -x c - | tail -n 1)
14ifeq ($(LP64), 1) 13ifeq ($(LP64), 1)