summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/elfutils/files/0001-libelf-Add-libeu-objects-to-libelf.a-static-archive.patch
diff options
context:
space:
mode:
authorSoumya Sambu <soumya.sambu@windriver.com>2025-06-06 12:14:03 +0530
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-06-11 09:34:40 +0100
commit82ebd782f74139a921f680f561abbbada24e71e2 (patch)
tree2bfd007a562ff2a830dcca58c5d725221a0f1c2c /meta/recipes-devtools/elfutils/files/0001-libelf-Add-libeu-objects-to-libelf.a-static-archive.patch
parentd91c6dca444a0765427779fa85297a5864830962 (diff)
downloadpoky-82ebd782f74139a921f680f561abbbada24e71e2.tar.gz
elfutils: Upgrade 0.192 -> 0.193
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>
Diffstat (limited to 'meta/recipes-devtools/elfutils/files/0001-libelf-Add-libeu-objects-to-libelf.a-static-archive.patch')
-rw-r--r--meta/recipes-devtools/elfutils/files/0001-libelf-Add-libeu-objects-to-libelf.a-static-archive.patch8
1 files changed, 4 insertions, 4 deletions
diff --git a/meta/recipes-devtools/elfutils/files/0001-libelf-Add-libeu-objects-to-libelf.a-static-archive.patch b/meta/recipes-devtools/elfutils/files/0001-libelf-Add-libeu-objects-to-libelf.a-static-archive.patch
index 1587087896..81c5255447 100644
--- a/meta/recipes-devtools/elfutils/files/0001-libelf-Add-libeu-objects-to-libelf.a-static-archive.patch
+++ b/meta/recipes-devtools/elfutils/files/0001-libelf-Add-libeu-objects-to-libelf.a-static-archive.patch
@@ -20,12 +20,12 @@ Upstream-Status: Backport [https://sourceware.org/git/?p=elfutils.git;a=commit;h
20 1 file changed, 3 insertions(+) 20 1 file changed, 3 insertions(+)
21 21
22diff --git a/libelf/Makefile.am b/libelf/Makefile.am 22diff --git a/libelf/Makefile.am b/libelf/Makefile.am
23index 3402863e..2d3dbdf2 100644 23index 05484c1..72f1e22 100644
24--- a/libelf/Makefile.am 24--- a/libelf/Makefile.am
25+++ b/libelf/Makefile.am 25+++ b/libelf/Makefile.am
26@@ -122,6 +122,9 @@ libelf.so: $(srcdir)/libelf.map $(libelf_so_LIBS) $(libelf_so_DEPS) 26@@ -125,6 +125,9 @@ libelf.so: $(srcdir)/libelf.map $(libelf_so_LIBS) $(libelf_so_DEPS)
27 @$(textrel_check) 27 libeu_objects = $(shell cat ../lib/libeu.manifest)
28 $(AM_V_at)ln -fs $@ $@.$(VERSION) 28 libelf_a_LIBADD = $(addprefix ../lib/,$(libeu_objects))
29 29
30+libeu_objects = $(shell $(AR) t ../lib/libeu.a) 30+libeu_objects = $(shell $(AR) t ../lib/libeu.a)
31+libelf_a_LIBADD = $(addprefix ../lib/,$(libeu_objects)) 31+libelf_a_LIBADD = $(addprefix ../lib/,$(libeu_objects))