The Makefile in bpf/preload builds a local copy of libbpf, but does not
properly clean up after itself. This can lead to subsequent compilation
failures, since the feature detection cache is kept around which can lead
subsequent detection to fail.
Fix this by properly setting clean-files, and while we're at it, also add a
.gitignore for the directory to ignore the build artifacts.
Fixes: d71fa5c976 ("bpf: Add kernel module with user mode driver that populates bpffs.")
Signed-off-by: Toke Høiland-Jørgensen <toke@redhat.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Link: https://lore.kernel.org/bpf/20200927193005.8459-1-toke@redhat.com
		
	
			
		
			
				
	
	
		
			26 lines
		
	
	
		
			768 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			768 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| # SPDX-License-Identifier: GPL-2.0
 | |
| 
 | |
| LIBBPF_SRCS = $(srctree)/tools/lib/bpf/
 | |
| LIBBPF_A = $(obj)/libbpf.a
 | |
| LIBBPF_OUT = $(abspath $(obj))
 | |
| 
 | |
| $(LIBBPF_A):
 | |
| 	$(Q)$(MAKE) -C $(LIBBPF_SRCS) OUTPUT=$(LIBBPF_OUT)/ $(LIBBPF_OUT)/libbpf.a
 | |
| 
 | |
| userccflags += -I $(srctree)/tools/include/ -I $(srctree)/tools/include/uapi \
 | |
| 	-I $(srctree)/tools/lib/ -Wno-unused-result
 | |
| 
 | |
| userprogs := bpf_preload_umd
 | |
| 
 | |
| clean-files := $(userprogs) bpf_helper_defs.h FEATURE-DUMP.libbpf staticobjs/ feature/
 | |
| 
 | |
| bpf_preload_umd-objs := iterators/iterators.o
 | |
| bpf_preload_umd-userldlibs := $(LIBBPF_A) -lelf -lz
 | |
| 
 | |
| $(obj)/bpf_preload_umd: $(LIBBPF_A)
 | |
| 
 | |
| $(obj)/bpf_preload_umd_blob.o: $(obj)/bpf_preload_umd
 | |
| 
 | |
| obj-$(CONFIG_BPF_PRELOAD_UMD) += bpf_preload.o
 | |
| bpf_preload-objs += bpf_preload_kern.o bpf_preload_umd_blob.o
 |