https://sourceware.org/bugzilla/show_bug.cgi?id=32293
Mark Wielaard <mark at klomp dot org> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mark at klomp dot org --- Comment #1 from Mark Wielaard <mark at klomp dot org> --- Is there a reason vl4-utils cannot simply be linked shared to libelf? In general we aren't really testing static linking. Which indeed means it is now broken :{ Maybe something like the following would help? diff --git a/libelf/Makefile.am b/libelf/Makefile.am index 3402863ef174..2d3dbdf22756 100644 --- a/libelf/Makefile.am +++ b/libelf/Makefile.am @@ -122,6 +122,9 @@ libelf.so: $(srcdir)/libelf.map $(libelf_so_LIBS) $(libelf_so_DEPS) @$(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 I don't have anything to test that with though. (You'll need to autoregen -f -v -i) -- You are receiving this mail because: You are on the CC list for the bug.