diff options
author | Jiri Olsa <jolsa@kernel.org> | 2020-09-23 21:57:35 +0300 |
---|---|---|
committer | Alexei Starovoitov <ast@kernel.org> | 2020-09-23 22:43:04 +0300 |
commit | dc3652d3f0d5479768ec8eb7f7aabbba6ed75d95 (patch) | |
tree | 996bb4a83af371d31a393d18a9a877b1ac40aff9 /tools/bpf/resolve_btfids | |
parent | 017dab341ee75c0d3675b9b3d28be28d38e6defc (diff) | |
download | linux-dc3652d3f0d5479768ec8eb7f7aabbba6ed75d95.tar.xz |
tools resolve_btfids: Always force HOSTARCH
Seth reported problem with cross builds, that fail
on resolve_btfids build, because we are trying to
build it on cross build arch.
Fixing this by always forcing the host arch.
Reported-by: Seth Forshee <seth.forshee@canonical.com>
Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Acked-by: Andrii Nakryiko <andriin@fb.com>
Link: https://lore.kernel.org/bpf/20200923185735.3048198-2-jolsa@kernel.org
Diffstat (limited to 'tools/bpf/resolve_btfids')
-rw-r--r-- | tools/bpf/resolve_btfids/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/bpf/resolve_btfids/Makefile b/tools/bpf/resolve_btfids/Makefile index a88cd4426398..d3c818b8d8d3 100644 --- a/tools/bpf/resolve_btfids/Makefile +++ b/tools/bpf/resolve_btfids/Makefile @@ -1,5 +1,6 @@ # SPDX-License-Identifier: GPL-2.0-only include ../../scripts/Makefile.include +include ../../scripts/Makefile.arch ifeq ($(srctree),) srctree := $(patsubst %/,%,$(dir $(CURDIR))) @@ -29,6 +30,7 @@ endif AR = $(HOSTAR) CC = $(HOSTCC) LD = $(HOSTLD) +ARCH = $(HOSTARCH) OUTPUT ?= $(srctree)/tools/bpf/resolve_btfids/ |