From 97bb0418c129c5e0fae8c4138e04693613c5ff4e Mon Sep 17 00:00:00 2001 From: Tianyou Li Date: Mon, 9 Dec 2024 13:49:28 +0800 Subject: [PATCH] Add BUILD_BPF_SKEL=1 for perf make --- tools/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/Makefile b/tools/Makefile index 2b38801..5b6e408 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -146,7 +146,7 @@ PERF_LINUX_VERSION := 6.1.52 perf: wget https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-$(PERF_LINUX_VERSION).tar.xz tar -xf linux-$(PERF_LINUX_VERSION).tar.xz && mv linux-$(PERF_LINUX_VERSION)/ linux_perf/ - cd linux_perf/tools/perf && make LDFLAGS="-static --static" + cd linux_perf/tools/perf && make LDFLAGS="-static --static" BUILD_BPF_SKEL=1 spectre-meltdown-checker: ifeq ("$(wildcard spectre-meltdown-checker)","")