[openwrt/openwrt] include/bpf.mk: check minimum required clang version

LEDE Commits lede-commits at lists.infradead.org
Tue Nov 9 12:01:09 PST 2021


nbd pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/694aed607fbc0a0599f1ff951e5af280500339f9

commit 694aed607fbc0a0599f1ff951e5af280500339f9
Author: Felix Fietkau <nbd at nbd.name>
AuthorDate: Tue Nov 9 20:59:15 2021 +0100

    include/bpf.mk: check minimum required clang version
    
    Avoid spurious runtime errors caused by loading eBPF modules
    built with an old clang version
    
    Signed-off-by: Felix Fietkau <nbd at nbd.name>
---
 include/bpf.mk | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/include/bpf.mk b/include/bpf.mk
index c68ad74554..967de7a172 100644
--- a/include/bpf.mk
+++ b/include/bpf.mk
@@ -1,6 +1,8 @@
 BPF_DEPENDS := @HAS_BPF_TOOLCHAIN
 LLVM_VER:=
 
+CLANG_MIN_VER:=12
+
 ifneq ($(CONFIG_USE_LLVM_HOST),)
   BPF_TOOLCHAIN_HOST_PATH:=$(call qstrip,$(CONFIG_BPF_TOOLCHAIN_HOST_PATH))
   ifneq ($(BPF_TOOLCHAIN_HOST_PATH),)
@@ -61,6 +63,14 @@ BPF_CFLAGS := \
 	-Wno-unused-label \
 	-O2 -emit-llvm -Xclang -disable-llvm-passes
 
+ifeq ($(DUMP),)
+  CLANG_VER:=$(shell clang -dM -E - < /dev/null | grep __clang_major__ | cut -d' ' -f3)
+  CLANG_VER_VALID:=$(shell [ "$(CLANG_VER)" -ge "$(CLANG_MIN_VER)" ] && echo 1 )
+  ifeq ($(CLANG_VER_VALID),)
+    $(error ERROR: LLVM/clang version too old. Minimum required: $(CLANG_MIN_VER), found: $(CLANG_VER))
+  endif
+endif
+
 define CompileBPF
 	$(CLANG) -g -target $(BPF_ARCH)-linux-gnu $(BPF_CFLAGS) $(2) \
 		-c $(1) -o $(patsubst %.c,%.bc,$(1))



More information about the lede-commits mailing list