Initial commit
	
		
			
	
		
	
	
		
	
		
			Some checks failed
		
		
	
	
		
			
				
	
				Build Kernel / Build all affected Kernels (push) Has been cancelled
				
			
		
			
				
	
				Build all core packages / Build all core packages for selected target (push) Has been cancelled
				
			
		
			
				
	
				Build and Push prebuilt tools container / Build and Push all prebuilt containers (push) Has been cancelled
				
			
		
			
				
	
				Build Toolchains / Build Toolchains for each target (push) Has been cancelled
				
			
		
			
				
	
				Build host tools / Build host tools for linux and macos based systems (push) Has been cancelled
				
			
		
			
				
	
				Coverity scan build / Coverity x86/64 build (push) Has been cancelled
				
			
		
		
	
	
				
					
				
			
		
			Some checks failed
		
		
	
	Build Kernel / Build all affected Kernels (push) Has been cancelled
				
			Build all core packages / Build all core packages for selected target (push) Has been cancelled
				
			Build and Push prebuilt tools container / Build and Push all prebuilt containers (push) Has been cancelled
				
			Build Toolchains / Build Toolchains for each target (push) Has been cancelled
				
			Build host tools / Build host tools for linux and macos based systems (push) Has been cancelled
				
			Coverity scan build / Coverity x86/64 build (push) Has been cancelled
				
			This commit is contained in:
		| @@ -0,0 +1,31 @@ | ||||
| From f5d6e088f84dd05278c4698a21cbf1ff4569978d Mon Sep 17 00:00:00 2001 | ||||
| From: Mark Wielaard <mark@klomp.org> | ||||
| Date: Tue, 22 Oct 2024 15:03:42 +0200 | ||||
| Subject: [PATCH] libelf: Add libeu objects to libelf.a static archive | ||||
|  | ||||
| libelf might use some symbols from libeu.a, specifically the eu-search | ||||
| wrappers. But we don't ship libeu.a separately. So include the libeu | ||||
| objects in the libelf.a archive to facilitate static linking. | ||||
|  | ||||
| 	* libelf/Makefile.am (libeu_objects): New variable. | ||||
| 	(libelf_a_LIBADD): New, add libeu_objects. | ||||
|  | ||||
| https://sourceware.org/bugzilla/show_bug.cgi?id=32293 | ||||
|  | ||||
| Signed-off-by: Mark Wielaard <mark@klomp.org> | ||||
| --- | ||||
|  libelf/Makefile.am | 3 +++ | ||||
|  1 file changed, 3 insertions(+) | ||||
|  | ||||
| --- a/libelf/Makefile.am | ||||
| +++ b/libelf/Makefile.am | ||||
| @@ -122,6 +122,9 @@ libelf.so: $(srcdir)/libelf.map $(libelf | ||||
|  	@$(textrel_check) | ||||
|  	$(AM_V_at)ln -fs $@ $@.$(VERSION) | ||||
|   | ||||
| +libeu_objects = $(shell $(AR) t ../lib/libeu.a) | ||||
| +libelf_a_LIBADD = $(addprefix ../lib/,$(libeu_objects)) | ||||
| + | ||||
|  install: install-am libelf.so | ||||
|  	$(mkinstalldirs) $(DESTDIR)$(libdir) | ||||
|  	$(INSTALL_PROGRAM) libelf.so $(DESTDIR)$(libdir)/libelf-$(PACKAGE_VERSION).so | ||||
		Reference in New Issue
	
	Block a user
	 domenico
					domenico