summaryrefslogtreecommitdiffstats
path: root/samples
diff options
context:
space:
mode:
authorJoel Fernandes <joelaf@google.com>2017-09-20 09:11:57 -0700
committerDavid S. Miller <davem@davemloft.net>2017-09-21 11:59:16 -0700
commit876e88e3273e300895e308bd660c6cfaabb03cd5 (patch)
tree8872934ddc072a92c589cdbe1199bd0b1c7d944d /samples
parent95ec66968571bf0af0a22effdc1b9d9e62ea6630 (diff)
downloadop-kernel-dev-876e88e3273e300895e308bd660c6cfaabb03cd5.zip
op-kernel-dev-876e88e3273e300895e308bd660c6cfaabb03cd5.tar.gz
samples/bpf: Enable cross compiler support
When cross compiling, bpf samples use HOSTCC for compiling the non-BPF part of the sample, however what we really want is to use the cross compiler to build for the cross target since that is what will load and run the BPF sample. Detect this and compile samples correctly. Acked-by: Alexei Starovoitov <ast@kernel.org> Signed-off-by: Joel Fernandes <joelaf@google.com> Acked-by: Daniel Borkmann <daniel@iogearbox.net> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'samples')
-rw-r--r--samples/bpf/Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/samples/bpf/Makefile b/samples/bpf/Makefile
index cf17c79..13f74b6 100644
--- a/samples/bpf/Makefile
+++ b/samples/bpf/Makefile
@@ -177,6 +177,11 @@ HOSTLOADLIBES_syscall_tp += -lelf
LLC ?= llc
CLANG ?= clang
+# Detect that we're cross compiling and use the cross compiler
+ifdef CROSS_COMPILE
+HOSTCC = $(CROSS_COMPILE)gcc
+endif
+
# Trick to allow make to be run from this directory
all:
$(MAKE) -C ../../ $(CURDIR)/
OpenPOWER on IntegriCloud