From 8ca30626cce4584d1f25efae20c665d7d1f64829 Mon Sep 17 00:00:00 2001 From: Andrii Nakryiko Date: Fri, 26 Jan 2024 14:38:33 -0800 Subject: [PATCH] Makefile: add features.o to Makefile Libbpf got new source code file, features.c, we need to add it to Makefile here on Github version as well. Signed-off-by: Andrii Nakryiko --- src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index ad06b82..fc75bb6 100644 --- a/src/Makefile +++ b/src/Makefile @@ -55,7 +55,7 @@ STATIC_OBJDIR := $(OBJDIR)/staticobjs OBJS := bpf.o btf.o libbpf.o libbpf_errno.o netlink.o \ nlattr.o str_error.o libbpf_probes.o bpf_prog_linfo.o \ btf_dump.o hashmap.o ringbuf.o strset.o linker.o gen_loader.o \ - relo_core.o usdt.o zip.o elf.o + relo_core.o usdt.o zip.o elf.o features.o SHARED_OBJS := $(addprefix $(SHARED_OBJDIR)/,$(OBJS)) STATIC_OBJS := $(addprefix $(STATIC_OBJDIR)/,$(OBJS))