mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	tools/libbpf: Enable cross-building with clang
Cross-building using clang requires passing the "-target" flag rather than using the CROSS_COMPILE prefix. Makefile.include transforms CROSS_COMPILE into CLANG_CROSS_FLAGS. Add them to the CFLAGS. Signed-off-by: Jean-Philippe Brucker <jean-philippe@linaro.org> Signed-off-by: Andrii Nakryiko <andrii@kernel.org> Acked-by: Quentin Monnet <quentin@isovalent.com> Link: https://lore.kernel.org/bpf/20211216163842.829836-4-jean-philippe@linaro.org
This commit is contained in:
		
							parent
							
								
									bf1be90346
								
							
						
					
					
						commit
						4980beb4cd
					
				
					 1 changed files with 2 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -90,6 +90,7 @@ override CFLAGS += -Werror -Wall
 | 
			
		|||
override CFLAGS += $(INCLUDES)
 | 
			
		||||
override CFLAGS += -fvisibility=hidden
 | 
			
		||||
override CFLAGS += -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64
 | 
			
		||||
override CFLAGS += $(CLANG_CROSS_FLAGS)
 | 
			
		||||
 | 
			
		||||
# flags specific for shared library
 | 
			
		||||
SHLIB_FLAGS := -DSHARED -fPIC
 | 
			
		||||
| 
						 | 
				
			
			@ -162,7 +163,7 @@ $(BPF_HELPER_DEFS): $(srctree)/tools/include/uapi/linux/bpf.h
 | 
			
		|||
$(OUTPUT)libbpf.so: $(OUTPUT)libbpf.so.$(LIBBPF_VERSION)
 | 
			
		||||
 | 
			
		||||
$(OUTPUT)libbpf.so.$(LIBBPF_VERSION): $(BPF_IN_SHARED) $(VERSION_SCRIPT)
 | 
			
		||||
	$(QUIET_LINK)$(CC) $(LDFLAGS) \
 | 
			
		||||
	$(QUIET_LINK)$(CC) $(CFLAGS) $(LDFLAGS) \
 | 
			
		||||
		--shared -Wl,-soname,libbpf.so.$(LIBBPF_MAJOR_VERSION) \
 | 
			
		||||
		-Wl,--version-script=$(VERSION_SCRIPT) $< -lelf -lz -o $@
 | 
			
		||||
	@ln -sf $(@F) $(OUTPUT)libbpf.so
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue