From 7a12cb850f4700351e19ddb26c7bafd34f10abef Mon Sep 17 00:00:00 2001 From: Jiping Yin Date: Fri, 24 Jan 2025 00:33:39 +0800 Subject: [PATCH] feat: agent - eBPF Add compilation for extension files (#9015) --- agent/src/ebpf/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/agent/src/ebpf/Makefile b/agent/src/ebpf/Makefile index 25ccdfb7993..cb33d43e989 100644 --- a/agent/src/ebpf/Makefile +++ b/agent/src/ebpf/Makefile @@ -92,6 +92,7 @@ OBJS := user/elf.o \ user/vec.o \ user/bihash.o \ user/profile/profile_common.o \ + $(patsubst %.c,%.o,$(wildcard user/extended/*.c)) \ $(patsubst %.c,%.o,$(wildcard user/profile/extended/*.c)) \ user/profile/perf_profiler.o \ user/profile/stringifier.o \