summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTil Kaiser2024-10-27 13:02:14 +0000
committerRobert Marko2024-10-28 09:34:50 +0000
commitff18576f845e9b422748efcafe1332e206626604 (patch)
treec9390d92f9077536c1d74a0b2660b870aebec82c
parent7ac3f0e96cabb634aaaa779e9f948f5766f288d7 (diff)
downloadopenwrt-ff18576f845e9b422748efcafe1332e206626604.tar.gz
xdp-tools: fix compilation when bpftool is installed
Currently, xdp-tools doesn't compile on build systems where bpftool is installed because additional tools and BPF programs will be compiled then, which results in build errors. This commit disables the compilation of those bpftool-dependent tools. Signed-off-by: Til Kaiser <mail@tk154.de> Link: https://github.com/openwrt/openwrt/pull/16787 Signed-off-by: Robert Marko <robimarko@gmail.com>
-rw-r--r--package/network/utils/xdp-tools/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/package/network/utils/xdp-tools/Makefile b/package/network/utils/xdp-tools/Makefile
index 8c4071991f..8bce10f634 100644
--- a/package/network/utils/xdp-tools/Makefile
+++ b/package/network/utils/xdp-tools/Makefile
@@ -87,7 +87,8 @@ CONFIGURE_VARS += \
CLANG="$(CLANG)" \
BPF_TARGET="$(BPF_ARCH)-linux-gnu" \
LLC="$(LLVM_LLC)" \
- BPF_LDFLAGS="-march=$(BPF_TARGET) -mcpu=v3"
+ BPF_LDFLAGS="-march=$(BPF_TARGET) -mcpu=v3" \
+ BPFTOOL=""
ifneq ($(findstring s,$(OPENWRT_VERBOSE)),)
MAKE_FLAGS+=V=1