mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 21:09:03 +02:00

Refreshed patches: 0001-libelf-Add-libeu-objects-to-libelf.a-static-archive.patch ptest.patch Changelog: Version 0.193 "Bugs erased, stacks traced" debuginfod: Add CORS (webapp access) support to webapi and --cors option. Add --listen-address option for binding the HTTP listen socket to a specific IPv4 or IPv6 address. debuginfod client now caches x-debuginfod-* HTTP headers alongside downloaded files. libdw: Add dwarf_language and dwarf_language_lower_bound functions. Improved support for DWARF6 language metadata as well as DWARF language constants for Nim, Dylan, Algol68, V and Mojo. dwarf_srclang is now forward-compatible with DWARF6 language constants. libdwfl_stacktrace: Experimental new library interface for unwinding stack samples into call chains, and tracking and caching Elf data for multiple processes, building on libdwfl. Initially supports perf_events stack sample data. libelf: elf_scnshndx has been rewritten to be more robust, particularily for ELF files with more than 64K sections. readelf: Improved handling of corrupt ELF data. --section-headers output now includes a "Key to Flags" explaining section flag meanings. (From OE-Core rev: ca990ae5a14fa0899dee4fccacf4cac8f212e4e8) Signed-off-by: Soumya Sambu <soumya.sambu@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
36 lines
1.4 KiB
Diff
36 lines
1.4 KiB
Diff
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>
|
|
Signed-off-by: Martin Jansa <martin.jansa@gmail.com>
|
|
Upstream-Status: Backport [https://sourceware.org/git/?p=elfutils.git;a=commit;h=f5d6e088f84dd05278c4698a21cbf1ff4569978d]
|
|
---
|
|
libelf/Makefile.am | 3 +++
|
|
1 file changed, 3 insertions(+)
|
|
|
|
diff --git a/libelf/Makefile.am b/libelf/Makefile.am
|
|
index 05484c1..72f1e22 100644
|
|
--- a/libelf/Makefile.am
|
|
+++ b/libelf/Makefile.am
|
|
@@ -125,6 +125,9 @@ libelf.so: $(srcdir)/libelf.map $(libelf_so_LIBS) $(libelf_so_DEPS)
|
|
libeu_objects = $(shell cat ../lib/libeu.manifest)
|
|
libelf_a_LIBADD = $(addprefix ../lib/,$(libeu_objects))
|
|
|
|
+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
|