1da0c48c4Sopenharmony_ci# -*- rpm-spec-*-
2da0c48c4Sopenharmony_ciName: elfutils
3da0c48c4Sopenharmony_ciVersion: @PACKAGE_VERSION@
4da0c48c4Sopenharmony_ciRelease: 1
5da0c48c4Sopenharmony_ciURL: http://elfutils.org/
6da0c48c4Sopenharmony_ciLicense: GPLv3+ and (GPLv2+ or LGPLv3+) and GFDL
7da0c48c4Sopenharmony_ciSource: ftp://sourceware.org/pub/elfutils/%{version}/elfutils-%{version}.tar.bz2
8da0c48c4Sopenharmony_ciSummary: A collection of utilities and DSOs to handle ELF files and DWARF data
9da0c48c4Sopenharmony_ci
10da0c48c4Sopenharmony_ciRequires: elfutils-libelf = %{version}-%{release}
11da0c48c4Sopenharmony_ciRequires: elfutils-libs = %{version}-%{release}
12da0c48c4Sopenharmony_ci# Can be a Recommends if rpm supports that
13da0c48c4Sopenharmony_ciRequires: elfutils-debuginfod-client = %{version}-%{release}
14da0c48c4Sopenharmony_ci
15da0c48c4Sopenharmony_ciBuildRequires: gcc
16da0c48c4Sopenharmony_ci# For libstdc++ demangle support
17da0c48c4Sopenharmony_ciBuildRequires: gcc-c++
18da0c48c4Sopenharmony_ci
19da0c48c4Sopenharmony_ciBuildRequires: gettext
20da0c48c4Sopenharmony_ciBuildRequires: bison
21da0c48c4Sopenharmony_ciBuildRequires: flex
22da0c48c4Sopenharmony_ci
23da0c48c4Sopenharmony_ci# Compression support
24da0c48c4Sopenharmony_ciBuildRequires: zlib-devel
25da0c48c4Sopenharmony_ciBuildRequires: bzip2-devel
26da0c48c4Sopenharmony_ciBuildRequires: xz-devel
27da0c48c4Sopenharmony_ciBuildRequires: libzstd-devel
28da0c48c4Sopenharmony_ci
29da0c48c4Sopenharmony_ci# For debuginfod
30da0c48c4Sopenharmony_ciBuildRequires: pkgconfig(libmicrohttpd) >= 0.9.33
31da0c48c4Sopenharmony_ciBuildRequires: pkgconfig(libcurl) >= 7.29.0
32da0c48c4Sopenharmony_ciBuildRequires: pkgconfig(sqlite3) >= 3.7.17
33da0c48c4Sopenharmony_ciBuildRequires: pkgconfig(libarchive) >= 3.1.2
34da0c48c4Sopenharmony_ci
35da0c48c4Sopenharmony_ci# For tests need to bunzip2 test files.
36da0c48c4Sopenharmony_ciBuildRequires: bzip2
37da0c48c4Sopenharmony_ciBuildRequires: zstd
38da0c48c4Sopenharmony_ci# For the run-debuginfod-find.sh test case in %%check for /usr/sbin/ss etc.
39da0c48c4Sopenharmony_ciBuildRequires: iproute
40da0c48c4Sopenharmony_ciBuildRequires: procps
41da0c48c4Sopenharmony_ciBuildRequires: bsdtar
42da0c48c4Sopenharmony_ciBuildRequires: curl
43da0c48c4Sopenharmony_ci# For run-debuginfod-response-headers.sh test case
44da0c48c4Sopenharmony_ciBuildRequires: socat
45da0c48c4Sopenharmony_ci
46da0c48c4Sopenharmony_ci%define _gnu %{nil}
47da0c48c4Sopenharmony_ci%define _programprefix eu-
48da0c48c4Sopenharmony_ci
49da0c48c4Sopenharmony_ci%description
50da0c48c4Sopenharmony_ciElfutils is a collection of utilities, including stack (to show
51da0c48c4Sopenharmony_cibacktraces), nm (for listing symbols from object files), size
52da0c48c4Sopenharmony_ci(for listing the section sizes of an object or archive file),
53da0c48c4Sopenharmony_cistrip (for discarding symbols), readelf (to see the raw ELF file
54da0c48c4Sopenharmony_cistructures), elflint (to check for well-formed ELF files) and
55da0c48c4Sopenharmony_cielfcompress (to compress or decompress ELF sections).
56da0c48c4Sopenharmony_ci
57da0c48c4Sopenharmony_ci%package libs
58da0c48c4Sopenharmony_ciSummary: Libraries to handle compiled objects
59da0c48c4Sopenharmony_ciLicense: GPLv2+ or LGPLv3+
60da0c48c4Sopenharmony_ciRequires: elfutils-libelf = %{version}-%{release}
61da0c48c4Sopenharmony_ciRequires: default-yama-scope
62da0c48c4Sopenharmony_ci# Can be a Recommends if rpm supports that
63da0c48c4Sopenharmony_ciRequires: elfutils-debuginfod-client = %{version}-%{release}
64da0c48c4Sopenharmony_ci
65da0c48c4Sopenharmony_ci%description libs
66da0c48c4Sopenharmony_ciThe elfutils-libs package contains libraries which implement DWARF, ELF,
67da0c48c4Sopenharmony_ciand machine-specific ELF handling and process introspection.  These
68da0c48c4Sopenharmony_cilibraries are used by the programs in the elfutils package.  The
69da0c48c4Sopenharmony_cielfutils-devel package enables building other programs using these
70da0c48c4Sopenharmony_cilibraries.
71da0c48c4Sopenharmony_ci
72da0c48c4Sopenharmony_ci%package devel
73da0c48c4Sopenharmony_ciSummary: Development libraries to handle compiled objects
74da0c48c4Sopenharmony_ciLicense: GPLv2+ or LGPLv3+
75da0c48c4Sopenharmony_ciRequires: elfutils-libs = %{version}-%{release}
76da0c48c4Sopenharmony_ciRequires: elfutils-libelf-devel = %{version}-%{release}
77da0c48c4Sopenharmony_ci# Can be a Recommends if rpm supports that
78da0c48c4Sopenharmony_ciRequires: elfutils-debuginfod-client-devel = %{version}-%{release}
79da0c48c4Sopenharmony_ci
80da0c48c4Sopenharmony_ci%description devel
81da0c48c4Sopenharmony_ciThe elfutils-devel package contains the libraries to create
82da0c48c4Sopenharmony_ciapplications for handling compiled objects.  libdw provides access
83da0c48c4Sopenharmony_cito the DWARF debugging information.  libasm provides a programmable
84da0c48c4Sopenharmony_ciassembler interface.
85da0c48c4Sopenharmony_ci
86da0c48c4Sopenharmony_ci%package devel-static
87da0c48c4Sopenharmony_ciSummary: Static archives to handle compiled objects
88da0c48c4Sopenharmony_ciLicense: GPLv2+ or LGPLv3+
89da0c48c4Sopenharmony_ciRequires: elfutils-devel = %{version}-%{release}
90da0c48c4Sopenharmony_ciRequires: elfutils-libelf-devel-static = %{version}-%{release}
91da0c48c4Sopenharmony_ci
92da0c48c4Sopenharmony_ci%description devel-static
93da0c48c4Sopenharmony_ciThe elfutils-devel-static package contains the static archives
94da0c48c4Sopenharmony_ciwith the code to handle compiled objects.
95da0c48c4Sopenharmony_ci
96da0c48c4Sopenharmony_ci%package libelf
97da0c48c4Sopenharmony_ciSummary: Library to read and write ELF files
98da0c48c4Sopenharmony_ciLicense: GPLv2+ or LGPLv3+
99da0c48c4Sopenharmony_ci
100da0c48c4Sopenharmony_ci%description libelf
101da0c48c4Sopenharmony_ciThe elfutils-libelf package provides a DSO which allows reading and
102da0c48c4Sopenharmony_ciwriting ELF files on a high level.  Third party programs depend on
103da0c48c4Sopenharmony_cithis package to read internals of ELF files.  The programs of the
104da0c48c4Sopenharmony_cielfutils package use it also to generate new ELF files.
105da0c48c4Sopenharmony_ci
106da0c48c4Sopenharmony_ci%package libelf-devel
107da0c48c4Sopenharmony_ciSummary: Development support for libelf
108da0c48c4Sopenharmony_ciLicense: GPLv2+ or LGPLv3+
109da0c48c4Sopenharmony_ciRequires: elfutils-libelf = %{version}-%{release}
110da0c48c4Sopenharmony_ciConflicts: libelf-devel
111da0c48c4Sopenharmony_ci
112da0c48c4Sopenharmony_ci%description libelf-devel
113da0c48c4Sopenharmony_ciThe elfutils-libelf-devel package contains the libraries to create
114da0c48c4Sopenharmony_ciapplications for handling compiled objects.  libelf allows you to
115da0c48c4Sopenharmony_ciaccess the internals of the ELF object file format, so you can see the
116da0c48c4Sopenharmony_cidifferent sections of an ELF file.
117da0c48c4Sopenharmony_ci
118da0c48c4Sopenharmony_ci%package libelf-devel-static
119da0c48c4Sopenharmony_ciSummary: Static archive of libelf
120da0c48c4Sopenharmony_ciLicense: GPLv2+ or LGPLv3+
121da0c48c4Sopenharmony_ciRequires: elfutils-libelf-devel = %{version}-%{release}
122da0c48c4Sopenharmony_ciConflicts: libelf-devel
123da0c48c4Sopenharmony_ci
124da0c48c4Sopenharmony_ci%description libelf-devel-static
125da0c48c4Sopenharmony_ciThe elfutils-libelf-static package contains the static archive
126da0c48c4Sopenharmony_cifor libelf.
127da0c48c4Sopenharmony_ci
128da0c48c4Sopenharmony_ci%package default-yama-scope
129da0c48c4Sopenharmony_ciSummary: Default yama attach scope sysctl setting
130da0c48c4Sopenharmony_ciLicense: GPLv2+ or LGPLv3+
131da0c48c4Sopenharmony_ciProvides: default-yama-scope
132da0c48c4Sopenharmony_ciBuildArch: noarch
133da0c48c4Sopenharmony_ci
134da0c48c4Sopenharmony_ci%description default-yama-scope
135da0c48c4Sopenharmony_ciYama sysctl setting to enable default attach scope settings
136da0c48c4Sopenharmony_cienabling programs to use ptrace attach, access to
137da0c48c4Sopenharmony_ci/proc/PID/{mem,personality,stack,syscall}, and the syscalls
138da0c48c4Sopenharmony_ciprocess_vm_readv and process_vm_writev which are used for
139da0c48c4Sopenharmony_ciinterprocess services, communication and introspection
140da0c48c4Sopenharmony_ci(like synchronisation, signaling, debugging, tracing and
141da0c48c4Sopenharmony_ciprofiling) of processes.
142da0c48c4Sopenharmony_ci
143da0c48c4Sopenharmony_ci%package debuginfod-client
144da0c48c4Sopenharmony_ciSummary: Library and command line client for build-id HTTP ELF/DWARF server
145da0c48c4Sopenharmony_ciLicense: GPLv3+ and (GPLv2+ or LGPLv3+)
146da0c48c4Sopenharmony_ci# For debuginfod-find binary
147da0c48c4Sopenharmony_ciRequires: elfutils-libs = %{version}-%{release}
148da0c48c4Sopenharmony_ciRequires: elfutils-libelf = %{version}-%{release}
149da0c48c4Sopenharmony_ci
150da0c48c4Sopenharmony_ci%package debuginfod-client-devel
151da0c48c4Sopenharmony_ciSummary: Libraries and headers to build debuginfod client applications
152da0c48c4Sopenharmony_ciLicense: GPLv2+ or LGPLv3+
153da0c48c4Sopenharmony_ciRequires: elfutils-debuginfod-client = %{version}-%{release}
154da0c48c4Sopenharmony_ci
155da0c48c4Sopenharmony_ci%package debuginfod
156da0c48c4Sopenharmony_ciSummary: HTTP ELF/DWARF file server addressed by build-id
157da0c48c4Sopenharmony_ciLicense: GPLv3+
158da0c48c4Sopenharmony_ciRequires: elfutils-libs = %{version}-%{release}
159da0c48c4Sopenharmony_ciRequires: elfutils-libelf = %{version}-%{release}
160da0c48c4Sopenharmony_ciRequires: elfutils-debuginfod-client = %{version}-%{release}
161da0c48c4Sopenharmony_ciBuildRequires: systemd
162da0c48c4Sopenharmony_ciRequires(post):   systemd
163da0c48c4Sopenharmony_ciRequires(preun):  systemd
164da0c48c4Sopenharmony_ciRequires(postun): systemd
165da0c48c4Sopenharmony_ciRequires(pre): shadow-utils
166da0c48c4Sopenharmony_ci# To extract .deb files with a bsdtar (= libarchive) subshell
167da0c48c4Sopenharmony_ciRequires: bsdtar
168da0c48c4Sopenharmony_ci
169da0c48c4Sopenharmony_ci%description debuginfod-client
170da0c48c4Sopenharmony_ciThe elfutils-debuginfod-client package contains shared libraries
171da0c48c4Sopenharmony_cidynamically loaded from -ldw, which use a debuginfod service
172da0c48c4Sopenharmony_cito look up debuginfo and associated data. Also includes a
173da0c48c4Sopenharmony_cicommand-line frontend.
174da0c48c4Sopenharmony_ci
175da0c48c4Sopenharmony_ci%description debuginfod-client-devel
176da0c48c4Sopenharmony_ciThe elfutils-debuginfod-client-devel package contains the libraries
177da0c48c4Sopenharmony_cito create applications to use the debuginfod service.
178da0c48c4Sopenharmony_ci
179da0c48c4Sopenharmony_ci%description debuginfod
180da0c48c4Sopenharmony_ciThe elfutils-debuginfod package contains the debuginfod binary
181da0c48c4Sopenharmony_ciand control files for a service that can provide ELF/DWARF
182da0c48c4Sopenharmony_cifiles to remote clients, based on build-id identification.
183da0c48c4Sopenharmony_ciThe ELF/DWARF file searching functions in libdwfl can query
184da0c48c4Sopenharmony_cisuch servers to download those files on demand.
185da0c48c4Sopenharmony_ci
186da0c48c4Sopenharmony_ci%prep
187da0c48c4Sopenharmony_ci%setup -q
188da0c48c4Sopenharmony_ci
189da0c48c4Sopenharmony_ci%build
190da0c48c4Sopenharmony_ci%configure --program-prefix=%{_programprefix} --enable-debuginfod --enable-debuginfod-urls
191da0c48c4Sopenharmony_cimake -s %{?_smp_mflags}
192da0c48c4Sopenharmony_ci
193da0c48c4Sopenharmony_ci%install
194da0c48c4Sopenharmony_cirm -rf ${RPM_BUILD_ROOT}
195da0c48c4Sopenharmony_cimkdir -p ${RPM_BUILD_ROOT}%{_prefix}
196da0c48c4Sopenharmony_ci
197da0c48c4Sopenharmony_ci%make_install
198da0c48c4Sopenharmony_ci
199da0c48c4Sopenharmony_cichmod +x ${RPM_BUILD_ROOT}%{_prefix}/%{_lib}/lib*.so*
200da0c48c4Sopenharmony_cimkdir -p ${RPM_BUILD_ROOT}%{_localstatedir}/cache/debuginfod
201da0c48c4Sopenharmony_citouch ${RPM_BUILD_ROOT}%{_localstatedir}/cache/debuginfod/debuginfod.sqlite
202da0c48c4Sopenharmony_ci
203da0c48c4Sopenharmony_ci# XXX Nuke unpackaged files
204da0c48c4Sopenharmony_ci( cd ${RPM_BUILD_ROOT}
205da0c48c4Sopenharmony_ci  rm -f .%{_includedir}/elfutils/libasm.h
206da0c48c4Sopenharmony_ci  rm -f .%{_libdir}/libasm.so
207da0c48c4Sopenharmony_ci  rm -f .%{_libdir}/libasm.a
208da0c48c4Sopenharmony_ci)
209da0c48c4Sopenharmony_ci
210da0c48c4Sopenharmony_ciinstall -Dm0644 config/10-default-yama-scope.conf ${RPM_BUILD_ROOT}%{_sysctldir}/10-default-yama-scope.conf
211da0c48c4Sopenharmony_ci
212da0c48c4Sopenharmony_ciinstall -Dm0644 config/debuginfod.service ${RPM_BUILD_ROOT}%{_unitdir}/debuginfod.service
213da0c48c4Sopenharmony_ciinstall -Dm0644 config/debuginfod.sysconfig ${RPM_BUILD_ROOT}%{_sysconfdir}/sysconfig/debuginfod
214da0c48c4Sopenharmony_cimkdir -p ${RPM_BUILD_ROOT}%{_localstatedir}/cache/debuginfod
215da0c48c4Sopenharmony_citouch ${RPM_BUILD_ROOT}%{_localstatedir}/cache/debuginfod/debuginfod.sqlite
216da0c48c4Sopenharmony_ci
217da0c48c4Sopenharmony_ci%check
218da0c48c4Sopenharmony_cimake -s %{?_smp_mflags} check
219da0c48c4Sopenharmony_ci
220da0c48c4Sopenharmony_ci%post libs -p /sbin/ldconfig
221da0c48c4Sopenharmony_ci%postun libs -p /sbin/ldconfig
222da0c48c4Sopenharmony_ci%post libelf -p /sbin/ldconfig
223da0c48c4Sopenharmony_ci%postun libelf -p /sbin/ldconfig
224da0c48c4Sopenharmony_ci%post debuginfod-client -p /sbin/ldconfig
225da0c48c4Sopenharmony_ci%postun debuginfod-client -p /sbin/ldconfig
226da0c48c4Sopenharmony_ci
227da0c48c4Sopenharmony_ci%post default-yama-scope
228da0c48c4Sopenharmony_ci# Due to circular dependencies might not be installed yet, so double check.
229da0c48c4Sopenharmony_ci# (systemd -> elfutils-libs -> default-yama-scope -> systemd)
230da0c48c4Sopenharmony_ciif [ -x /usr/lib/systemd/systemd-sysctl ] ; then
231da0c48c4Sopenharmony_ci%sysctl_apply 10-default-yama-scope.conf
232da0c48c4Sopenharmony_cifi
233da0c48c4Sopenharmony_ci
234da0c48c4Sopenharmony_ci%files
235da0c48c4Sopenharmony_ci%license COPYING COPYING-GPLV2 COPYING-LGPLV3 doc/COPYING-GFDL
236da0c48c4Sopenharmony_ci%doc README TODO CONTRIBUTING
237da0c48c4Sopenharmony_ci%{_bindir}/eu-addr2line
238da0c48c4Sopenharmony_ci%{_bindir}/eu-ar
239da0c48c4Sopenharmony_ci%{_bindir}/eu-elfclassify
240da0c48c4Sopenharmony_ci%{_bindir}/eu-elfcmp
241da0c48c4Sopenharmony_ci%{_bindir}/eu-elfcompress
242da0c48c4Sopenharmony_ci%{_bindir}/eu-elflint
243da0c48c4Sopenharmony_ci%{_bindir}/eu-findtextrel
244da0c48c4Sopenharmony_ci%{_bindir}/eu-make-debug-archive
245da0c48c4Sopenharmony_ci%{_bindir}/eu-nm
246da0c48c4Sopenharmony_ci%{_bindir}/eu-objdump
247da0c48c4Sopenharmony_ci%{_bindir}/eu-ranlib
248da0c48c4Sopenharmony_ci%{_bindir}/eu-readelf
249da0c48c4Sopenharmony_ci%{_bindir}/eu-size
250da0c48c4Sopenharmony_ci%{_bindir}/eu-stack
251da0c48c4Sopenharmony_ci%{_bindir}/eu-strings
252da0c48c4Sopenharmony_ci%{_bindir}/eu-strip
253da0c48c4Sopenharmony_ci%{_bindir}/eu-unstrip
254da0c48c4Sopenharmony_ci%{_mandir}/man1/eu-*.1*
255da0c48c4Sopenharmony_ci
256da0c48c4Sopenharmony_ci%files libs
257da0c48c4Sopenharmony_ci%license COPYING-GPLV2 COPYING-LGPLV3
258da0c48c4Sopenharmony_ci%{_libdir}/libasm-%{version}.so
259da0c48c4Sopenharmony_ci%{_libdir}/libdw-%{version}.so
260da0c48c4Sopenharmony_ci%{_libdir}/libasm.so.*
261da0c48c4Sopenharmony_ci%{_libdir}/libdw.so.*
262da0c48c4Sopenharmony_ci
263da0c48c4Sopenharmony_ci%files devel
264da0c48c4Sopenharmony_ci%{_includedir}/dwarf.h
265da0c48c4Sopenharmony_ci%dir %{_includedir}/elfutils
266da0c48c4Sopenharmony_ci%{_includedir}/elfutils/elf-knowledge.h
267da0c48c4Sopenharmony_ci%{_includedir}/elfutils/known-dwarf.h
268da0c48c4Sopenharmony_ci#%%{_includedir}/elfutils/libasm.h
269da0c48c4Sopenharmony_ci%{_includedir}/elfutils/libdw.h
270da0c48c4Sopenharmony_ci%{_includedir}/elfutils/libdwfl.h
271da0c48c4Sopenharmony_ci%{_includedir}/elfutils/libdwelf.h
272da0c48c4Sopenharmony_ci%{_includedir}/elfutils/version.h
273da0c48c4Sopenharmony_ci#%%{_libdir}/libasm.so
274da0c48c4Sopenharmony_ci%{_libdir}/libdw.so
275da0c48c4Sopenharmony_ci%{_libdir}/pkgconfig/libdw.pc
276da0c48c4Sopenharmony_ci
277da0c48c4Sopenharmony_ci%files devel-static
278da0c48c4Sopenharmony_ci%{_libdir}/libdw.a
279da0c48c4Sopenharmony_ci#%%{_libdir}/libasm.a
280da0c48c4Sopenharmony_ci
281da0c48c4Sopenharmony_ci%files libelf
282da0c48c4Sopenharmony_ci%license COPYING-GPLV2 COPYING-LGPLV3
283da0c48c4Sopenharmony_ci%{_libdir}/libelf-%{version}.so
284da0c48c4Sopenharmony_ci%{_libdir}/libelf.so.*
285da0c48c4Sopenharmony_ci%{_datadir}/locale/*/LC_MESSAGES/elfutils.mo
286da0c48c4Sopenharmony_ci
287da0c48c4Sopenharmony_ci%files libelf-devel
288da0c48c4Sopenharmony_ci%{_includedir}/libelf.h
289da0c48c4Sopenharmony_ci%{_includedir}/gelf.h
290da0c48c4Sopenharmony_ci%{_includedir}/nlist.h
291da0c48c4Sopenharmony_ci%{_libdir}/libelf.so
292da0c48c4Sopenharmony_ci%{_libdir}/pkgconfig/libelf.pc
293da0c48c4Sopenharmony_ci%{_mandir}/man3/elf_*.3*
294da0c48c4Sopenharmony_ci
295da0c48c4Sopenharmony_ci%files libelf-devel-static
296da0c48c4Sopenharmony_ci%{_libdir}/libelf.a
297da0c48c4Sopenharmony_ci
298da0c48c4Sopenharmony_ci%files default-yama-scope
299da0c48c4Sopenharmony_ci%{_sysctldir}/10-default-yama-scope.conf
300da0c48c4Sopenharmony_ci
301da0c48c4Sopenharmony_ci%files debuginfod-client
302da0c48c4Sopenharmony_ci%defattr(-,root,root)
303da0c48c4Sopenharmony_ci%{_libdir}/libdebuginfod-%{version}.so
304da0c48c4Sopenharmony_ci%{_libdir}/libdebuginfod.so.*
305da0c48c4Sopenharmony_ci%{_bindir}/debuginfod-find
306da0c48c4Sopenharmony_ci%{_mandir}/man1/debuginfod-find.1*
307da0c48c4Sopenharmony_ci%{_mandir}/man7/debuginfod*.7*
308da0c48c4Sopenharmony_ci%config(noreplace) %{_sysconfdir}/profile.d/*
309da0c48c4Sopenharmony_ci%config(noreplace) %{_sysconfdir}/debuginfod/*
310da0c48c4Sopenharmony_ci  
311da0c48c4Sopenharmony_ci%files debuginfod-client-devel
312da0c48c4Sopenharmony_ci%defattr(-,root,root)
313da0c48c4Sopenharmony_ci%{_libdir}/pkgconfig/libdebuginfod.pc
314da0c48c4Sopenharmony_ci%{_mandir}/man3/debuginfod_*.3*
315da0c48c4Sopenharmony_ci%{_mandir}/man7/debuginfod*.7*
316da0c48c4Sopenharmony_ci%{_includedir}/elfutils/debuginfod.h
317da0c48c4Sopenharmony_ci%{_libdir}/libdebuginfod.so
318da0c48c4Sopenharmony_ci
319da0c48c4Sopenharmony_ci%files debuginfod
320da0c48c4Sopenharmony_ci%defattr(-,root,root)
321da0c48c4Sopenharmony_ci%{_bindir}/debuginfod
322da0c48c4Sopenharmony_ci%config(noreplace) %{_sysconfdir}/sysconfig/debuginfod
323da0c48c4Sopenharmony_ci%{_unitdir}/debuginfod.service
324da0c48c4Sopenharmony_ci%{_mandir}/man8/debuginfod*.8*
325da0c48c4Sopenharmony_ci%{_mandir}/man7/debuginfod*.7*
326da0c48c4Sopenharmony_ci
327da0c48c4Sopenharmony_ci%dir %attr(0700,debuginfod,debuginfod) %{_localstatedir}/cache/debuginfod
328da0c48c4Sopenharmony_ci%ghost %attr(0600,debuginfod,debuginfod) %{_localstatedir}/cache/debuginfod/debuginfod.sqlite
329da0c48c4Sopenharmony_ci
330da0c48c4Sopenharmony_ci%pre debuginfod
331da0c48c4Sopenharmony_cigetent group debuginfod >/dev/null || groupadd -r debuginfod
332da0c48c4Sopenharmony_cigetent passwd debuginfod >/dev/null || \
333da0c48c4Sopenharmony_ci    useradd -r -g debuginfod -d /var/cache/debuginfod -s /sbin/nologin \
334da0c48c4Sopenharmony_ci            -c "elfutils debuginfo server" debuginfod
335da0c48c4Sopenharmony_ciexit 0
336da0c48c4Sopenharmony_ci
337da0c48c4Sopenharmony_ci%post debuginfod
338da0c48c4Sopenharmony_ci%systemd_post debuginfod.service
339da0c48c4Sopenharmony_ci
340da0c48c4Sopenharmony_ci%postun debuginfod
341da0c48c4Sopenharmony_ci%systemd_postun_with_restart debuginfod.service
342da0c48c4Sopenharmony_ci
343da0c48c4Sopenharmony_ci%changelog
344da0c48c4Sopenharmony_ci* Wed Nov  2 2022 Mark Wielaard <mark@klomp.org> 0.188-1
345da0c48c4Sopenharmony_ci- readelf: Add -D, --use-dynamic option.
346da0c48c4Sopenharmony_ci- debuginfod-client: Add $DEBUGINFOD_HEADERS_FILE setting to supply
347da0c48c4Sopenharmony_ci  outgoing HTTP headers.
348da0c48c4Sopenharmony_ci  Add new function debuginfod_find_section.
349da0c48c4Sopenharmony_ci- debuginfod: Add --disable-source-scan option.
350da0c48c4Sopenharmony_ci- libdwfl: Add new function dwfl_get_debuginfod_client.
351da0c48c4Sopenharmony_ci  Add new function dwfl_frame_reg.
352da0c48c4Sopenharmony_ci  Add new function dwfl_report_offline_memory.
353da0c48c4Sopenharmony_ci
354da0c48c4Sopenharmony_ci* Mon Apr 25 2022 Mark Wielaard <mark@klomp.org> 0.187-1
355da0c48c4Sopenharmony_ci- debuginfod: Support -C option for connection thread pooling.
356da0c48c4Sopenharmony_ci- debuginfod-client: Negative cache file are now zero sized instead
357da0c48c4Sopenharmony_ci  of no-permission files.
358da0c48c4Sopenharmony_ci- addr2line: The -A, --absolute option, which shows file names
359da0c48c4Sopenharmony_ci  includingthe full compilation directory is now the
360da0c48c4Sopenharmony_ci  default.  To get theold behavior use the new option --relative.
361da0c48c4Sopenharmony_ci- readelf, elflint: Recognize FDO Packaging Metadata ELF notes
362da0c48c4Sopenharmony_ci- libdw, debuginfo-client: Load libcurl lazily only when files need
363da0c48c4Sopenharmony_ci  to be fetched remotely. libcurl is now never loaded when
364da0c48c4Sopenharmony_ci  DEBUGINFOD_URLS is unset. And whenDEBUGINFOD_URLS is set,
365da0c48c4Sopenharmony_ci  libcurl is only loaded when the debuginfod_begin function is
366da0c48c4Sopenharmony_ci  called.
367da0c48c4Sopenharmony_ci
368da0c48c4Sopenharmony_ci* Wed Nov 10 2021 Mark Wielaard <mark@klomp.org> 0.186-1
369da0c48c4Sopenharmony_ci- debuginfod-client: Default $DEBUGINFOD_URLS is computed from
370da0c48c4Sopenharmony_ci  drop-in files /etc/debuginfod/*.urls rather than
371da0c48c4Sopenharmony_ci  hardcoded into the /etc/profile.d/debuginfod*
372da0c48c4Sopenharmony_ci  scripts.
373da0c48c4Sopenharmony_ci  Add $DEBUGINFOD_MAXSIZE and $DEBUGINFOD_MAXTIME settings
374da0c48c4Sopenharmony_ci  for skipping large/slow transfers.
375da0c48c4Sopenharmony_ci  Add $DEBUGINFOD_RETRY for retrying aborted lookups.
376da0c48c4Sopenharmony_ci- debuginfod: Supply extra HTTP response headers, describing
377da0c48c4Sopenharmony_ci  archive/file names that satisfy the requested buildid content.
378da0c48c4Sopenharmony_ci  Support -d :memory: option for in-memory databases.
379da0c48c4Sopenharmony_ci  Protect against loops in federated server configurations.
380da0c48c4Sopenharmony_ci  Add -r option to use -I/-X regexes for grooming stale files.
381da0c48c4Sopenharmony_ci  Protect against wasted CPU from duplicate concurrent requests.
382da0c48c4Sopenharmony_ci  Limit the duration of groom ops roughly to rescan (-t) times.
383da0c48c4Sopenharmony_ci  Add --passive mode for serving from read-only database.
384da0c48c4Sopenharmony_ci  Several other performance improvements & prometheus metrics.
385da0c48c4Sopenharmony_ci- libdw: Support for the NVIDIA Cuda line map extensions.
386da0c48c4Sopenharmony_ci  DW_LNE_NVIDIA_inlined_call and DW_LNE_NVIDIA_set_function_name
387da0c48c4Sopenharmony_ci  are defined in dwarf.h. New functions dwarf_linecontext and
388da0c48c4Sopenharmony_ci  dwarf_linefunctionname.
389da0c48c4Sopenharmony_ci- translations: Update Japanese translation.
390da0c48c4Sopenharmony_ci
391da0c48c4Sopenharmony_ci* Sat May 22 2021 Mark Wielaard <mark@klomp.org> 0.185-1
392da0c48c4Sopenharmony_ci- debuginfod-client: Simplify curl handle reuse so downloads which
393da0c48c4Sopenharmony_ci                     return an error are retried.
394da0c48c4Sopenharmony_ci- elfcompress: Always exit with code 0 when the operation succeeds
395da0c48c4Sopenharmony_ci               (even when nothing was done). On error the exit code is
396da0c48c4Sopenharmony_ci               now always 1.
397da0c48c4Sopenharmony_ci
398da0c48c4Sopenharmony_ci* Mon May 10 2021  Mark Wielaard <mark@klomp.org> 0.184-1
399da0c48c4Sopenharmony_ci- debuginfod: Use libarchive's bsdtar as the .deb-family file unpacker.
400da0c48c4Sopenharmony_ci- debuginfod-client: Client caches negative results. If a query for a
401da0c48c4Sopenharmony_ci		   file failed with 404, an empty 000 permission
402da0c48c4Sopenharmony_ci		   file is created in the cache. This will prevent
403da0c48c4Sopenharmony_ci		   requesting the same file for the next 10 minutes.
404da0c48c4Sopenharmony_ci- 		   Client objects now carry long-lived curl handles
405da0c48c4Sopenharmony_ci		   for outgoing connections.  This makes it more
406da0c48c4Sopenharmony_ci		   efficient for multiple sequential queries, because
407da0c48c4Sopenharmony_ci		   the TCP connections and/or TLS state info are kept
408da0c48c4Sopenharmony_ci		   around awhile, avoiding O(100ms) setup latencies.
409da0c48c4Sopenharmony_ci- libdw: handle DW_FORM_indirect when reading attributes
410da0c48c4Sopenharmony_ci- translations: Update Polish translation.
411da0c48c4Sopenharmony_ci
412da0c48c4Sopenharmony_ci* Fri Feb  5 2021 Mark Wielaard <mark@klomp.org> 0.183-1
413da0c48c4Sopenharmony_ci- debuginfod: New thread-busy metric and more detailed error metrics.
414da0c48c4Sopenharmony_ci  New --fdcache-mintmp and tracking of filesystem freespace.
415da0c48c4Sopenharmony_ci- debigonfod-client: DEBUGINFOD_SONAME macro added to debuginfod.h can
416da0c48c4Sopenharmony_ci  be used to dlopen the libdebuginfod.so library.
417da0c48c4Sopenharmony_ci  New function debuginfod_set_verbose_fd and DEBUGINFOD_VERBOSE
418da0c48c4Sopenharmony_ci  environment variable.
419da0c48c4Sopenharmony_ci- config: profile.sh and profile.csh won't export DEBUGINFOD_URLS
420da0c48c4Sopenharmony_ci  unless configured --enable-debuginfod-urls[=URLS]
421da0c48c4Sopenharmony_ci- elflint, readelf: Recognize SHF_GNU_RETAIN.
422da0c48c4Sopenharmony_ci  Handle SHT_X86_64_UNWIND as valid relocation target type.
423da0c48c4Sopenharmony_ci
424da0c48c4Sopenharmony_ci* Sat Oct 31 2020 Mark Wielaard <mark@klomp.org> 0.182-1
425da0c48c4Sopenharmony_ci- backends: Support for tilegx has been removed.
426da0c48c4Sopenharmony_ci- config: New /etc/profile.d files to provide default $DEBUGINFOD_URLS.
427da0c48c4Sopenharmony_ci- debuginfod: More efficient package traversal, tolerate various
428da0c48c4Sopenharmony_ci  errors during scanning, grooming progress is more visible and
429da0c48c4Sopenharmony_ci  interruptible, more prometheus metrics.
430da0c48c4Sopenharmony_ci- debuginfod-client: Now supports compressed (kernel) ELF images.
431da0c48c4Sopenharmony_ci- libdwfl: Add ZSTD compression support.
432da0c48c4Sopenharmony_ci
433da0c48c4Sopenharmony_ci* Tue Sep  8 2020 Mark Wielaard <mark@klomp.org> 0.181-1
434da0c48c4Sopenharmony_ci- libelf: elf_update now compensates (fixes up) a bad sh_addralign
435da0c48c4Sopenharmony_ci  for SHF_COMPRESSED sections.
436da0c48c4Sopenharmony_ci- libdebuginfod: configure now takes --enable-libdebuginfod=dummy or
437da0c48c4Sopenharmony_ci  --disable-libdebuginfod for bootstrapping.
438da0c48c4Sopenharmony_ci  DEBUGINFOD_URLS now accepts "scheme-free" urls
439da0c48c4Sopenharmony_ci  (guessing at what the user meant, either http:// or file://)
440da0c48c4Sopenharmony_ci- readelf, elflint: Handle aarch64 bti, pac bits in dynamic table and
441da0c48c4Sopenharmony_ci  gnu property notes.
442da0c48c4Sopenharmony_ci- libdw, readelf: Recognize DW_CFA_AARCH64_negate_ra_state. Allows
443da0c48c4Sopenharmony_ci  unwinding on arm64 for code that is compiled for PAC
444da0c48c4Sopenharmony_ci  (Pointer Authentication Code) as long as it isn't enabled.
445da0c48c4Sopenharmony_ci
446da0c48c4Sopenharmony_ci* Thu Jun 11 2020 Mark Wielaard <mark@klomp.org> 0.180-1
447da0c48c4Sopenharmony_ci- elflint: Allow SHF_EXCLUDE as generic section flag when --gnu is given.
448da0c48c4Sopenharmony_ci- libdw, readelf: Handle GCC LTO .gnu.debuglto_ prefix.
449da0c48c4Sopenharmony_ci- libdw: Use correct CU to resolve file names in dwarf_decl_file.
450da0c48c4Sopenharmony_ci- libdwfl: Handle debugaltlink in dwfl_standard_find_debuginfo.
451da0c48c4Sopenharmony_ci- size: Also obey radix printing for bsd format.
452da0c48c4Sopenharmony_ci- nm: Explicitly print weak 'V' or 'T' and common 'C' symbols.
453da0c48c4Sopenharmony_ci
454da0c48c4Sopenharmony_ci* Mon Mar 30 2020 Mark Wielaard <mark@klomp.org> 0.179-1
455da0c48c4Sopenharmony_ci- debuginfod-client: When DEBUGINFOD_PROGRESS is set and the program
456da0c48c4Sopenharmony_ci  doesn't install its own debuginfod_progressfn_t show download
457da0c48c4Sopenharmony_ci  progress on stderr.
458da0c48c4Sopenharmony_ci  DEBUGINFOD_TIMEOUT is now defined as seconds to get at least 100K,
459da0c48c4Sopenharmony_ci  defaults to 90 seconds.
460da0c48c4Sopenharmony_ci  Default to $XDG_CACHE_HOME/debuginfod_client.
461da0c48c4Sopenharmony_ci  New functions debuginfod_set_user_data, debuginfod_get_user_data,
462da0c48c4Sopenharmony_ci  debuginfod_get_url and debuginfod_add_http_header.
463da0c48c4Sopenharmony_ci  Support for file:// URLs.
464da0c48c4Sopenharmony_ci- debuginfod: Uses libarchive directly for reading rpm archives.
465da0c48c4Sopenharmony_ci  Support for indexing .deb/.ddeb archives through dpkg-deb or bsdtar.
466da0c48c4Sopenharmony_ci  Generic archive support through -Z EXT[=CMD]. Which can be used for
467da0c48c4Sopenharmony_ci  example for arch-linux pacman files by using -Z '.tar.zst=zstdcat'.
468da0c48c4Sopenharmony_ci  Better logging using User-Agent and X-Forwarded-For headers.
469da0c48c4Sopenharmony_ci  More prometheus metrics.
470da0c48c4Sopenharmony_ci  Support for eliding dots or extraneous slashes in path names.
471da0c48c4Sopenharmony_ci- debuginfod-find: Accept /path/names in place of buildid hex.
472da0c48c4Sopenharmony_ci- libelf: Handle PN_XNUM in elf_getphdrnum before shdr 0 is cached.
473da0c48c4Sopenharmony_ci  Ensure zlib resource cleanup on failure.
474da0c48c4Sopenharmony_ci- libdwfl: dwfl_linux_kernel_find_elf and dwfl_linux_kernel_report_offline
475da0c48c4Sopenharmony_ci  now find and handle a compressed vmlinuz image.
476da0c48c4Sopenharmony_ci- readelf, elflint: Handle PT_GNU_PROPERTY.
477da0c48c4Sopenharmony_ci- translations: Updated Ukrainian translation.
478da0c48c4Sopenharmony_ci
479da0c48c4Sopenharmony_ci* Tue Nov 26 2019 Mark Wielaard <mark@klomp.org> 0.178-1
480da0c48c4Sopenharmony_ci- debuginfod: New server, client tool and library to index and fetch
481da0c48c4Sopenharmony_ci              ELF/DWARF files addressed by build-id through HTTP.
482da0c48c4Sopenharmony_ci- doc: There are now some manual pages for functions and tools.
483da0c48c4Sopenharmony_ci- backends: The libebl libraries are no longer dynamically loaded
484da0c48c4Sopenharmony_ci            through dlopen, but are now compiled into libdw.so directly.
485da0c48c4Sopenharmony_ci- readelf: -n, --notes now takes an optional "SECTION" argument.
486da0c48c4Sopenharmony_ci           -p and -x now also handle section numbers.
487da0c48c4Sopenharmony_ci           New option --dyn-sym to show just the dynamic symbol table.
488da0c48c4Sopenharmony_ci- libcpu: Add RISC-V disassembler.
489da0c48c4Sopenharmony_ci- libdw: Abbrevs and DIEs can now be read concurrently by multiple
490da0c48c4Sopenharmony_ci         threads through the same Dwarf handle.
491da0c48c4Sopenharmony_ci- libdwfl: Will try to use debuginfod when installed as fallback to
492da0c48c4Sopenharmony_ci           retrieve ELF and DWARF debug data files by build-id.
493da0c48c4Sopenharmony_ci
494da0c48c4Sopenharmony_ci* Tue Aug 13 2019 Mark Wielaard <mark@klomp.org> 0.177-1
495da0c48c4Sopenharmony_ci- elfclassify: New tool to analyze ELF objects.
496da0c48c4Sopenharmony_ci- readelf: Print DW_AT_data_member_location as decimal offset.
497da0c48c4Sopenharmony_ci           Decode DW_AT_discr_list block attributes.
498da0c48c4Sopenharmony_ci- libdw: Add DW_AT_GNU_numerator, DW_AT_GNU_denominator and DW_AT_GNU_bias.
499da0c48c4Sopenharmony_ci- libdwelf: Add dwelf_elf_e_machine_string.
500da0c48c4Sopenharmony_ci            dwelf_elf_begin now only returns NULL when there is an error
501da0c48c4Sopenharmony_ci            reading or decompressing a file. If the file is not an ELF file
502da0c48c4Sopenharmony_ci            an ELF handle of type ELF_K_NONE is returned.
503da0c48c4Sopenharmony_ci- backends: Add support for C-SKY.
504da0c48c4Sopenharmony_ci
505da0c48c4Sopenharmony_ci* Thu Feb 14 2019 Mark Wielaard <mark@klomp.org> 0.176-1
506da0c48c4Sopenharmony_ci- build: Add new --enable-install-elfh option.
507da0c48c4Sopenharmony_ci  Do NOT use this for system installs (it overrides glibc elf.h).
508da0c48c4Sopenharmony_ci- backends: riscv improved core file and return value location support.
509da0c48c4Sopenharmony_ci- Fixes CVE-2019-7146, CVE-2019-7148, CVE-2019-7149, CVE-2019-7150,
510da0c48c4Sopenharmony_ci        CVE-2019-7664, CVE-2019-7665.
511da0c48c4Sopenharmony_ci
512da0c48c4Sopenharmony_ci* Wed Nov 14 2018 Mark Wielaard <mark@klomp.org> 0.175-1
513da0c48c4Sopenharmony_ci- readelf: Handle multiple .debug_macro sections.
514da0c48c4Sopenharmony_ci  Recognize and parse GNU Property notes, NT_VERSION notes and
515da0c48c4Sopenharmony_ci  GNU Build Attribute ELF Notes.
516da0c48c4Sopenharmony_ci- strip: Handle SHT_GROUP correctly.
517da0c48c4Sopenharmony_ci  Add strip --reloc-debug-sections-only option.
518da0c48c4Sopenharmony_ci  Handle relocations against GNU compressed sections.
519da0c48c4Sopenharmony_ci- libdwelf: New function dwelf_elf_begin.
520da0c48c4Sopenharmony_ci- libcpu: Recognize bpf jump variants BPF_JLT, BPF_JLE, BPF_JSLT
521da0c48c4Sopenharmony_ci  and BPF_JSLE.
522da0c48c4Sopenharmony_ci- backends: RISCV handles ADD/SUB relocations.
523da0c48c4Sopenharmony_ci  Handle SHT_X86_64_UNWIND.
524da0c48c4Sopenharmony_ci- Fixes CVE-2018-18310, CVE-2018-18520 and CVE-2018-18521.
525da0c48c4Sopenharmony_ci
526da0c48c4Sopenharmony_ci* Fri Sep 14 2018 Mark Wielaard <mark@klomp> 0.174-1
527da0c48c4Sopenharmony_ci- libelf, libdw and all tools now handle extended shnum and shstrndx
528da0c48c4Sopenharmony_ci  correctly.
529da0c48c4Sopenharmony_ci- elfcompress: Don't rewrite input file if no section data needs
530da0c48c4Sopenharmony_ci  updating.  Try harder to keep same file mode bits (suid) on rewrite.
531da0c48c4Sopenharmony_ci- strip: Handle mixed (out of order) allocated/non-allocated sections.
532da0c48c4Sopenharmony_ci- unstrip: Handle SHT_GROUP sections.
533da0c48c4Sopenharmony_ci- backends: RISCV and M68K now have backend implementations to
534da0c48c4Sopenharmony_ci  generate CFI based backtraces.
535da0c48c4Sopenharmony_ci- Fixes CVE-2018-16062, CVE-2018-16402 and CVE-2018-16403.
536da0c48c4Sopenharmony_ci
537da0c48c4Sopenharmony_ci* Fri Jun 29 2018 Mark Wielaard,,, <mark@klomp.org> 0.173-1
538da0c48c4Sopenharmony_ci- More fixes for crashes and hangs found by afl-fuzz. In particular
539da0c48c4Sopenharmony_ci  various functions now detect and break infinite loops caused by bad
540da0c48c4Sopenharmony_ci  DIE tree cycles.
541da0c48c4Sopenharmony_ci- readelf: Will now lookup the size and signedness of constant value
542da0c48c4Sopenharmony_ci  types to display them correctly (and not just how they were encoded).
543da0c48c4Sopenharmony_ci- libdw: New function dwarf_next_lines to read CU-less .debug_line data.
544da0c48c4Sopenharmony_ci  dwarf_begin_elf now accepts ELF files containing just .debug_line
545da0c48c4Sopenharmony_ci  or .debug_frame sections (which can be read without needing a DIE
546da0c48c4Sopenharmony_ci  tree from the .debug_info section).
547da0c48c4Sopenharmony_ci  Removed dwarf_getscn_info, which was never implemented.
548da0c48c4Sopenharmony_ci- backends: Handle BPF simple relocations.
549da0c48c4Sopenharmony_ci  The RISCV backends now handles ABI specific CFI and knows about
550da0c48c4Sopenharmony_ci  RISCV register types and names.
551da0c48c4Sopenharmony_ci
552da0c48c4Sopenharmony_ci* Mon Jun 11 2018 Mark Wielaard <mark@klomp.org> 0.172-1
553da0c48c4Sopenharmony_ci- No functional changes compared to 0.171.
554da0c48c4Sopenharmony_ci- Various bug fixes in libdw and eu-readelf dealing with bad DWARF5
555da0c48c4Sopenharmony_ci  data. Thanks to running the afl fuzzer on eu-readelf and various
556da0c48c4Sopenharmony_ci  testcases.
557da0c48c4Sopenharmony_ci- eu-readelf -N is ~15% faster.
558da0c48c4Sopenharmony_ci
559da0c48c4Sopenharmony_ci* Fri Jun 01 2018 Mark Wielaard <mark@klomp.org> 0.171-1
560da0c48c4Sopenharmony_ci- DWARF5 and split dwarf, including GNU DebugFission, support.
561da0c48c4Sopenharmony_ci- readelf: Handle all new DWARF5 sections.
562da0c48c4Sopenharmony_ci  --debug-dump=info+ will show split unit DIEs when found.
563da0c48c4Sopenharmony_ci  --dwarf-skeleton can be used when inspecting a .dwo file.
564da0c48c4Sopenharmony_ci  Recognizes GNU locviews with --debug-dump=loc.
565da0c48c4Sopenharmony_ci- libdw: New functions dwarf_die_addr_die, dwarf_get_units,
566da0c48c4Sopenharmony_ci  dwarf_getabbrevattr_data and dwarf_cu_info.
567da0c48c4Sopenharmony_ci  libdw will now try to resolve the alt file on first use
568da0c48c4Sopenharmony_ci  when not set yet with dwarf_set_alt.
569da0c48c4Sopenharmony_ci  dwarf_aggregate_size() now works with multi-dimensional arrays.
570da0c48c4Sopenharmony_ci- libdwfl: Use process_vm_readv when available instead of ptrace.
571da0c48c4Sopenharmony_ci- backends: Add a RISC-V backend.
572da0c48c4Sopenharmony_ci
573da0c48c4Sopenharmony_ci* Wed Aug  2 2017 Mark Wielaard <mark@klomp.org> 0.170-1
574da0c48c4Sopenharmony_ci- libdw: Added new DWARF5 attribute, tag, character encoding,
575da0c48c4Sopenharmony_ci  language code, calling convention, defaulted member function
576da0c48c4Sopenharmony_ci  and macro constants to dwarf.h.
577da0c48c4Sopenharmony_ci  New functions dwarf_default_lower_bound and dwarf_line_file.
578da0c48c4Sopenharmony_ci  dwarf_peel_type now handles DWARF5 immutable, packed and shared tags.
579da0c48c4Sopenharmony_ci  dwarf_getmacros now handles DWARF5 .debug_macro sections.
580da0c48c4Sopenharmony_ci- strip: Add -R, --remove-section=SECTION and --keep-section=SECTION.
581da0c48c4Sopenharmony_ci- backends: The bpf disassembler is now always build on all platforms.
582da0c48c4Sopenharmony_ci
583da0c48c4Sopenharmony_ci* Fri May  5 2017 Mark Wielaard <mark@klomp.org> 0.169-1
584da0c48c4Sopenharmony_ci- backends: Add support for EM_PPC64 GNU_ATTRIBUTES.
585da0c48c4Sopenharmony_ci  Frame pointer unwinding fallback support for i386, x86_64, aarch64.
586da0c48c4Sopenharmony_ci- translations: Update Polish translation.
587da0c48c4Sopenharmony_ci
588da0c48c4Sopenharmony_ci* Tue Dec 27 2016 Mark Wielaard <mark@klomp.org> 0.168-1
589da0c48c4Sopenharmony_ci- http://elfutils.org/ is now hosted at http://sourceware.org/elfutils/
590da0c48c4Sopenharmony_ci- libelf: gelf_newehdr and gelf_newehdr now return void *.
591da0c48c4Sopenharmony_ci- libdw: dwarf.h corrected the DW_LANG_PLI constant name (was DW_LANG_PL1).
592da0c48c4Sopenharmony_ci- readelf: Add optional --symbols[=SECTION] argument to select section name.
593da0c48c4Sopenharmony_ci
594da0c48c4Sopenharmony_ci* Thu Aug  4 2016 Mark Wielaard <mjw@redhat.com> 0.167-1
595da0c48c4Sopenharmony_ci- libasm: Add eBPF disassembler for EM_BPF files.
596da0c48c4Sopenharmony_ci- backends: Add m68k and BPF backends.
597da0c48c4Sopenharmony_ci- ld: Removed.
598da0c48c4Sopenharmony_ci- dwelf: Add ELF/DWARF string table creation functions.
599da0c48c4Sopenharmony_ci  dwelf_strtab_init, dwelf_strtab_add, dwelf_strtab_add_len,
600da0c48c4Sopenharmony_ci  dwelf_strtab_finalize, dwelf_strent_off, dwelf_strent_str and
601da0c48c4Sopenharmony_ci  dwelf_strtab_free.
602da0c48c4Sopenharmony_ci
603da0c48c4Sopenharmony_ci* Thu Mar 31 2016 Mark Wielaard <mjw@redhat.com> 0.166-1
604da0c48c4Sopenharmony_ci- config: The default program prefix for the installed tools is now
605da0c48c4Sopenharmony_ci  eu-. Use configure --program-prefix="" to not use a program prefix.
606da0c48c4Sopenharmony_ci
607da0c48c4Sopenharmony_ci* Fri Jan  8 2016 Mark Wielaard <mjw@redhat.com> 0.165-1
608da0c48c4Sopenharmony_ci- elfcompress: New utility to compress or decompress ELF sections.
609da0c48c4Sopenharmony_ci- readelf: Add -z,--decompress option.
610da0c48c4Sopenharmony_ci- libelf: Add elf_compress, elf_compress_gnu, elf32_getchdr,
611da0c48c4Sopenharmony_ci  elf64_getchdr and gelf_getchdr.
612da0c48c4Sopenharmony_ci- libdwelf: New function dwelf_scn_gnu_compressed_size.
613da0c48c4Sopenharmony_ci- config: Add libelf and libdw pkg-config files.
614da0c48c4Sopenharmony_ci- backends: sparc support for core and live backtraces.
615da0c48c4Sopenharmony_ci- translations: Updated Polish translation.
616da0c48c4Sopenharmony_ci
617da0c48c4Sopenharmony_ci* Thu Oct 15 2015 Mark Wielaard <mjw@redhat.com> 0.164-1
618da0c48c4Sopenharmony_ci- strip, unstrip: Handle ELF files with merged strtab/shstrtab
619da0c48c4Sopenharmony_ci  tables. Handle missing SHF_INFO_LINK section flags.
620da0c48c4Sopenharmony_ci- libelf: Use int64_t for offsets in libelf.h instead of loff_t.
621da0c48c4Sopenharmony_ci- libdw: dwarf.h Add preliminary DWARF5 DW_LANG_Haskell.
622da0c48c4Sopenharmony_ci- libdwfl: dwfl_standard_find_debuginfo now searches any subdir of
623da0c48c4Sopenharmony_ci  the binary path under the debuginfo root when the separate
624da0c48c4Sopenharmony_ci  debug file couldn't be found by build-id.
625da0c48c4Sopenharmony_ci  dwfl_linux_proc_attach can now be called before any Dwfl_Modules
626da0c48c4Sopenharmony_ci  have been reported.
627da0c48c4Sopenharmony_ci- backends: Better sparc and sparc64 support.
628da0c48c4Sopenharmony_ci- translations: Updated Ukrainian translation.
629da0c48c4Sopenharmony_ci- Provide default-yama-scope subpackage.
630da0c48c4Sopenharmony_ci
631da0c48c4Sopenharmony_ci* Fri Jun 19 2015 Mark Wielaard <mjw@redhat.com> 0.163-1
632da0c48c4Sopenharmony_ci- Bug fixes only, no new features.
633da0c48c4Sopenharmony_ci
634da0c48c4Sopenharmony_ci* Wed Jun 10 2015 Mark Wielaard <mjw@redhat.com> 0.162-1
635da0c48c4Sopenharmony_ci- libdw: Install new header elfutils/known-dwarf.h.
636da0c48c4Sopenharmony_ci  dwarf.h Add preliminary DWARF5 constants DW_TAG_atomic_type,
637da0c48c4Sopenharmony_ci  DW_LANG_Fortran03, DW_LANG_Fortran08. dwarf_peel_type now also
638da0c48c4Sopenharmony_ci  handles DW_TAG_atomic_type.
639da0c48c4Sopenharmony_ci- addr2line: Input addresses are now always interpreted as
640da0c48c4Sopenharmony_ci  hexadecimal numbers, never as octal or decimal numbers.
641da0c48c4Sopenharmony_ci  New option -a, --addresses to print address before each entry.
642da0c48c4Sopenharmony_ci  New option -C, --demangle to show demangled symbols.
643da0c48c4Sopenharmony_ci  New option --pretty-print to print all information on one line.
644da0c48c4Sopenharmony_ci- ar: CVE-2014-9447 Directory traversal vulnerability in ar
645da0c48c4Sopenharmony_ci  extraction.
646da0c48c4Sopenharmony_ci- backends: x32 support.
647da0c48c4Sopenharmony_ci
648da0c48c4Sopenharmony_ci* Thu Dec 18 2014 Mark Wielaard <mjw@redhat.com> 0.161-1
649da0c48c4Sopenharmony_ci- libdw: New function dwarf_peel_type. dwarf_aggregate_size now uses
650da0c48c4Sopenharmony_ci  dwarf_peel_type to also provide the sizes of qualified types.
651da0c48c4Sopenharmony_ci  dwarf_getmacros will now serve either of .debug_macro and
652da0c48c4Sopenharmony_ci  .debug_macinfo transparently.  New interfaces dwarf_getmacros_off,
653da0c48c4Sopenharmony_ci  dwarf_macro_getsrcfiles, dwarf_macro_getparamcnt, and
654da0c48c4Sopenharmony_ci  dwarf_macro_param are available for more generalized inspection of
655da0c48c4Sopenharmony_ci  macros and their parameters.
656da0c48c4Sopenharmony_ci  dwarf.h: Add DW_AT_GNU_deleted, DW_AT_noreturn, DW_LANG_C11,
657da0c48c4Sopenharmony_ci  DW_LANG_C_plus_plus_11 and DW_LANG_C_plus_plus_14.
658da0c48c4Sopenharmony_ci
659da0c48c4Sopenharmony_ci* Mon Aug 25 2014 Mark Wielaard <mjw@redhat.com> 0.160-1
660da0c48c4Sopenharmony_ci- libdw: New functions dwarf_cu_getdwarf, dwarf_cu_die.
661da0c48c4Sopenharmony_ci  dwarf.h remove non-existing DW_TAG_mutable_type.
662da0c48c4Sopenharmony_ci- libdwfl: Handle LZMA .ko.xz compressed kernel modules.
663da0c48c4Sopenharmony_ci- unstrip: New option -F, --force to combining files even if some ELF
664da0c48c4Sopenharmony_ci  headers don't seem to match.
665da0c48c4Sopenharmony_ci- backends: Handle ARM THUMB functions. Add support for ppc64le ELFv2 abi.
666da0c48c4Sopenharmony_ci
667da0c48c4Sopenharmony_ci* Sat May 17 2014 Mark Wielaard <mjw@redhat.com> 0.159-1
668da0c48c4Sopenharmony_ci- stack: New option -d, --debugname to lookup DWARF debuginfo name 
669da0c48c4Sopenharmony_ci  for frame.  New option -i, --inlines to show inlined frames 
670da0c48c4Sopenharmony_ci  using DWARF debuginfo.
671da0c48c4Sopenharmony_ci- libdwelf: New libdwelf.h header for libdw.so DWARF ELF Low-level 
672da0c48c4Sopenharmony_ci  Functions.  New function dwelf_elf_gnu_debuglink, 
673da0c48c4Sopenharmony_ci  dwelf_dwarf_gnu_debugaltlink, and dwelf_elf_gnu_build_id.
674da0c48c4Sopenharmony_ci- libdw: Support for DWZ multifile forms DW_FORM_GNU_ref_alt and      
675da0c48c4Sopenharmony_ci  DW_FORM_GNU_strp_alt is now enabled by default and no longer        
676da0c48c4Sopenharmony_ci  experimental. Added new functions dwarf_getalt and dwarf_setalt       
677da0c48c4Sopenharmony_ci  to get or set the alternative debug file used for the alt FORMs.     
678da0c48c4Sopenharmony_ci  The dwfl_linux_proc_find_elf callback will now find ELF from       
679da0c48c4Sopenharmony_ci  process memory for (deleted) files if the Dwfl has process state     
680da0c48c4Sopenharmony_ci  attached.
681da0c48c4Sopenharmony_ci- libdwfl: The dwfl_build_id_find_debuginfo and 
682da0c48c4Sopenharmony_ci  dwfl_standard_find_debuginfo functions will now try to 
683da0c48c4Sopenharmony_ci  resolve and set the alternative debug file.
684da0c48c4Sopenharmony_ci- backends: Add CFI unwinding for arm. Relies on .debug_frame.        
685da0c48c4Sopenharmony_ci  Add arm process initial register state compatible mode to AARCH64. 
686da0c48c4Sopenharmony_ci  Add aarch64 native and core unwind support.
687da0c48c4Sopenharmony_ci- other: All separate elfutils-robustify patches have been merged.    
688da0c48c4Sopenharmony_ci  CVE-2014-0172 Check overflow before calling malloc to uncompress 
689da0c48c4Sopenharmony_ci  data.
690da0c48c4Sopenharmony_ci
691da0c48c4Sopenharmony_ci* Fri Jan  3 2014 Mark Wielaard <mjw@redhat.com> 0.158-1
692da0c48c4Sopenharmony_ci- libdwfl: dwfl_core_file_report has new parameter executable.
693da0c48c4Sopenharmony_ci  New functions dwfl_module_getsymtab_first_global,
694da0c48c4Sopenharmony_ci  dwfl_module_getsym_info and dwfl_module_addrinfo.
695da0c48c4Sopenharmony_ci  Added unwinder with type Dwfl_Thread_Callbacks, opaque types
696da0c48c4Sopenharmony_ci  Dwfl_Thread and Dwfl_Frame and functions dwfl_attach_state,
697da0c48c4Sopenharmony_ci  dwfl_pid, dwfl_thread_dwfl, dwfl_thread_tid, dwfl_frame_thread,
698da0c48c4Sopenharmony_ci  dwfl_thread_state_registers, dwfl_thread_state_register_pc,
699da0c48c4Sopenharmony_ci  dwfl_getthread_frames, dwfl_getthreads, dwfl_thread_getframes
700da0c48c4Sopenharmony_ci  and dwfl_frame_pc.
701da0c48c4Sopenharmony_ci- addr2line: New option -x to show the section an address was found in.
702da0c48c4Sopenharmony_ci- stack: New utility that uses the new unwinder for processes and cores.
703da0c48c4Sopenharmony_ci- backends: Unwinder support for i386, x86_64, s390, s390x, ppc and ppc64.
704da0c48c4Sopenharmony_ci  aarch64 support.
705da0c48c4Sopenharmony_ci
706da0c48c4Sopenharmony_ci* Mon Sep 30 2013 Mark Wielaard <mjw@redhat.com> 0.157-1
707da0c48c4Sopenharmony_ci- libdw: Add new functions dwarf_getlocations, dwarf_getlocation_attr 
708da0c48c4Sopenharmony_ci         and dwarf_getlocation_die.
709da0c48c4Sopenharmony_ci- readelf: Show contents of NT_SIGINFO and NT_FILE core notes.
710da0c48c4Sopenharmony_ci- addr2line: Support -i, --inlines output option.
711da0c48c4Sopenharmony_ci- backends: abi_cfi hook for arm, ppc and s390.
712da0c48c4Sopenharmony_ci
713da0c48c4Sopenharmony_ci* Thu Jul 25 2013 Jan Kratochvil <jan.kratochvil@redhat.com> 0.156-1
714da0c48c4Sopenharmony_ci- lib: New macro COMPAT_VERSION_NEWPROTO.
715da0c48c4Sopenharmony_ci- libdw: Handle GNU extension opcodes in dwarf_getlocation.
716da0c48c4Sopenharmony_ci- libdwfl: Fix STB_GLOBAL over STB_WEAK preference in 
717da0c48c4Sopenharmony_ci  dwfl_module_addrsym.          Add minisymtab support.          Add 
718da0c48c4Sopenharmony_ci  parameter add_p_vaddr to dwfl_report_elf.          Use DT_DEBUG 
719da0c48c4Sopenharmony_ci  library search first.
720da0c48c4Sopenharmony_ci- libebl: Handle new core note types in EBL.
721da0c48c4Sopenharmony_ci- backends: Interpret NT_ARM_VFP.           Implement core file 
722da0c48c4Sopenharmony_ci  registers parsing for s390/s390x.
723da0c48c4Sopenharmony_ci- readelf: Add --elf-section input option to inspect an embedded ELF 
724da0c48c4Sopenharmony_ci  file.          Add -U, --unresolved-address-offsets output control.   
725da0c48c4Sopenharmony_ci         Add --debug-dump=decodedline support.          Accept version 
726da0c48c4Sopenharmony_ci  8 .gdb_index section format.          Adjust output formatting width. 
727da0c48c4Sopenharmony_ci           When highpc is in constant form print it also as address.    
728da0c48c4Sopenharmony_ci        Display raw .debug_aranges. Use libdw only for decodedaranges.
729da0c48c4Sopenharmony_ci- elflint: Add __bss_start__ to the list of allowed symbols.
730da0c48c4Sopenharmony_ci- tests: Add configure --enable-valgrind option to run all tests 
731da0c48c4Sopenharmony_ci  under valgrind.        Enable automake parallel-tests for make check.
732da0c48c4Sopenharmony_ci- translations: Updated Polish translation.
733da0c48c4Sopenharmony_ci- Updates for Automake 1.13.
734da0c48c4Sopenharmony_ci
735da0c48c4Sopenharmony_ci* Fri Aug 24 2012 Mark Wielaard <mjw@redhat.com> 0.155-1
736da0c48c4Sopenharmony_ci- libelf: elf*_xlatetomd now works for cross-endian ELF note data.    
737da0c48c4Sopenharmony_ci       elf_getshdr now works consistently on non-mmaped ELF files after 
738da0c48c4Sopenharmony_ci          calling elf_cntl(ELF_C_FDREAD).         Implement support for 
739da0c48c4Sopenharmony_ci  ar archives with 64-bit symbol table.
740da0c48c4Sopenharmony_ci- libdw: dwarf.h corrected the DW_LANG_ObjC constant name (was 
741da0c48c4Sopenharmony_ci  DW_LANG_Objc).        Any existing sources using the old name will 
742da0c48c4Sopenharmony_ci  have to be updated.        Add DW_MACRO_GNU .debug_macro type 
743da0c48c4Sopenharmony_ci  encodings constants, DW_ATE_UTF        and DW_OP_GNU_parameter_ref to 
744da0c48c4Sopenharmony_ci  dwarf.h.        Experimental support for DWZ multifile forms 
745da0c48c4Sopenharmony_ci  DW_FORM_GNU_ref_alt        and DW_FORM_GNU_strp_alt.  Disabled by 
746da0c48c4Sopenharmony_ci  default.  Use configure        --enable-dwz to test it.
747da0c48c4Sopenharmony_ci- readelf: Add .debug_macro parsing support.          Add .gdb_index 
748da0c48c4Sopenharmony_ci  version 7 parsing support.          Recognize DW_OP_GNU_parameter_ref.
749da0c48c4Sopenharmony_ci- backends: Add support for Tilera TILE-Gx processor.
750da0c48c4Sopenharmony_ci- translations: Updated Ukrainian translation.
751da0c48c4Sopenharmony_ci
752da0c48c4Sopenharmony_ci* Fri Jun 22 2012 Mark Wielaard <mjw@redhat.com> 0.154-1
753da0c48c4Sopenharmony_ci- libelf: [g]elf[32|64]_offscn() do not match SHT_NOBITS sections at 
754da0c48c4Sopenharmony_ci  OFFSET.
755da0c48c4Sopenharmony_ci- libdw: dwarf_highpc function now handles DWARF 4 DW_AT_high_pc 
756da0c48c4Sopenharmony_ci  constant form.        Fix bug using dwarf_next_unit to iterate over 
757da0c48c4Sopenharmony_ci  .debug_types.
758da0c48c4Sopenharmony_ci- elflint: Now accepts gold linker produced executables.
759da0c48c4Sopenharmony_ci- The license is now GPLv2/LGPLv3+ for the libraries and GPLv3+ for 
760da0c48c4Sopenharmony_ci  stand-alone programs. There is now also a formal CONTRIBUTING 
761da0c48c4Sopenharmony_ci  document describing how to submit patches.
762da0c48c4Sopenharmony_ci
763da0c48c4Sopenharmony_ci* Thu Feb 23 2012 Mark Wielaard <mjw@redhat.com> 0.153-1
764da0c48c4Sopenharmony_ci- libdw: Support reading .zdebug_* DWARF sections compressed via zlib.
765da0c48c4Sopenharmony_ci- libdwfl: Speed up dwfl_module_addrsym.
766da0c48c4Sopenharmony_ci- nm: Support C++ demangling.
767da0c48c4Sopenharmony_ci- ar: Support D modifier for "deterministic output" with no 
768da0c48c4Sopenharmony_ci  uid/gid/mtime info.     The U modifier is the inverse.     elfutils 
769da0c48c4Sopenharmony_ci  can be configured with the --enable-deterministic-archives     option 
770da0c48c4Sopenharmony_ci  to make the D behavior the default when U is not specified.
771da0c48c4Sopenharmony_ci- ranlib: Support -D and -U flags with same meaning.
772da0c48c4Sopenharmony_ci- readelf: Improve output of -wline. Add support for printing SDT elf 
773da0c48c4Sopenharmony_ci  notes.          Add printing of .gdb_index section. 	 Support for 
774da0c48c4Sopenharmony_ci  typed DWARF stack, call_site and entry_value.
775da0c48c4Sopenharmony_ci- strip: Add --reloc-debug-sections option.        Improved SHT_GROUP 
776da0c48c4Sopenharmony_ci  sections handling.
777da0c48c4Sopenharmony_ci
778da0c48c4Sopenharmony_ci* Tue Feb 15 2011  <drepper@gmail.com> 0.152-1
779da0c48c4Sopenharmony_ci- Various build and warning nits fixed for newest GCC and Autoconf.
780da0c48c4Sopenharmony_ci- libdwfl: Yet another prelink-related fix for another regression.
781da0c48c4Sopenharmony_ci  	 Look for Linux kernel images in files named with compression
782da0c48c4Sopenharmony_ci  suffixes.
783da0c48c4Sopenharmony_ci- elfcmp: New flag --ignore-build-id to ignore differing build ID
784da0c48c4Sopenharmony_ci  bits. 	New flag -l/--verbose to print all differences.
785da0c48c4Sopenharmony_ci
786da0c48c4Sopenharmony_ci* Wed Jan 12 2011  <drepper@gmail.com> 0.151-1
787da0c48c4Sopenharmony_ci- libdwfl: Fix for more prelink cases with separate debug file.
788da0c48c4Sopenharmony_ci- strip: New flag --strip-sections to remove section headers entirely.
789da0c48c4Sopenharmony_ci
790da0c48c4Sopenharmony_ci* Mon Nov 22 2010  <drepper@gmail.com> 0.150-1
791da0c48c4Sopenharmony_ci- libdw: Fix for handling huge .debug_aranges section.
792da0c48c4Sopenharmony_ci- libdwfl: Fix for handling prelinked DSO with separate debug file.
793da0c48c4Sopenharmony_ci- findtextrel: Fix diagnostics to work with usual section ordering.
794da0c48c4Sopenharmony_ci- libebl: i386 backend fix for multi-register integer return value
795da0c48c4Sopenharmony_ci  location.
796da0c48c4Sopenharmony_ci
797da0c48c4Sopenharmony_ci* Mon Sep 13 2010  <drepper@redhat.com> 0.149-1
798da0c48c4Sopenharmony_ci- libdw: Decode new DW_OP_GNU_implicit_pointer operation;        new
799da0c48c4Sopenharmony_ci  function dwarf_getlocation_implicit_pointer.
800da0c48c4Sopenharmony_ci- libdwfl: New function dwfl_dwarf_line.
801da0c48c4Sopenharmony_ci- addr2line: New flag -F/--flags to print more DWARF line information
802da0c48c4Sopenharmony_ci  details.
803da0c48c4Sopenharmony_ci- strip: -g recognizes .gdb_index as a debugging section.
804da0c48c4Sopenharmony_ci
805da0c48c4Sopenharmony_ci* Mon Jun 28 2010  <drepper@redhat.com> 0.148-1
806da0c48c4Sopenharmony_ci- libdw: Accept DWARF 4 format: new functions dwarf_next_unit,
807da0c48c4Sopenharmony_ci  dwarf_offdie_types.        New functions dwarf_lineisa,
808da0c48c4Sopenharmony_ci  dwarf_linediscriminator, dwarf_lineop_index.
809da0c48c4Sopenharmony_ci- libdwfl: Fixes in core-file handling, support cores from PIEs.
810da0c48c4Sopenharmony_ci  	 When working from build IDs, don't open a named file that
811da0c48c4Sopenharmony_ci  mismatches.
812da0c48c4Sopenharmony_ci- readelf: Handle DWARF 4 formats.
813da0c48c4Sopenharmony_ci
814da0c48c4Sopenharmony_ci* Mon May  3 2010 Ulrich Drepper <drepper@redhat.com> 0.147-1
815da0c48c4Sopenharmony_ci- libdw: Fixes in CFI handling, best possible handling of bogus CFA
816da0c48c4Sopenharmony_ci  ops.
817da0c48c4Sopenharmony_ci- libdwfl: Ignore R_*_NONE relocs, works around old (binutils) ld -r
818da0c48c4Sopenharmony_ci  bugs.
819da0c48c4Sopenharmony_ci
820da0c48c4Sopenharmony_ci* Wed Apr 21 2010  <drepper@redhat.com> 0.146-1
821da0c48c4Sopenharmony_ci- libdwfl: New function dwfl_core_file_report.
822da0c48c4Sopenharmony_ci
823da0c48c4Sopenharmony_ci* Tue Feb 23 2010 Ulrich Drepper <drepper@redhat.com> 0.145-1
824da0c48c4Sopenharmony_ci- Fix build with --disable-dependency-tracking.
825da0c48c4Sopenharmony_ci- Fix build with most recent glibc headers.
826da0c48c4Sopenharmony_ci- libelf: More robust to bogus section headers.
827da0c48c4Sopenharmony_ci- libdw: Fix CFI decoding.
828da0c48c4Sopenharmony_ci- libdwfl: Fix address bias returned by CFI accessors. 	 Fix core
829da0c48c4Sopenharmony_ci  file module layout identification.
830da0c48c4Sopenharmony_ci- readelf: Fix CFI decoding.
831da0c48c4Sopenharmony_ci
832da0c48c4Sopenharmony_ci* Thu Jan 14 2010  <drepper@redhat.com> 0.144-1
833da0c48c4Sopenharmony_ci- libelf: New function elf_getphdrnum. 	Now support using more than
834da0c48c4Sopenharmony_ci  65536 program headers in a file.
835da0c48c4Sopenharmony_ci- libdw: New function dwarf_aggregate_size for computing (constant)
836da0c48c4Sopenharmony_ci  type        sizes, including array_type cases with nontrivial
837da0c48c4Sopenharmony_ci  calculation.
838da0c48c4Sopenharmony_ci- readelf: Don't give errors for missing info under -a.
839da0c48c4Sopenharmony_ci  Handle Linux "VMCOREINFO" notes under -n.
840da0c48c4Sopenharmony_ci
841da0c48c4Sopenharmony_ci* Mon Sep 21 2009  <drepper@redhat.com> 0.143-1
842da0c48c4Sopenharmony_ci- libdw: Various convenience functions for individual attributes now
843da0c48c4Sopenharmony_ci  use dwarf_attr_integrate to look up indirect inherited
844da0c48c4Sopenharmony_ci  attributes.  Location expression handling now supports
845da0c48c4Sopenharmony_ci  DW_OP_implicit_value.
846da0c48c4Sopenharmony_ci- libdwfl: Support automatic decompression of files in XZ format,
847da0c48c4Sopenharmony_ci  and of Linux kernel images made with bzip2 or LZMA (as well
848da0c48c4Sopenharmony_ci  as gzip).
849da0c48c4Sopenharmony_ci
850da0c48c4Sopenharmony_ci* Mon Jun 29 2009  <drepper@redhat.com> 0.142-1
851da0c48c4Sopenharmony_ci- libelf: Add elf_getshdrnum alias for elf_getshnum and elf_getshdrstrndx alias
852da0c48c4Sopenharmony_ci  for elf_getshstrndx and deprecate original names.  Sun screwed up
853da0c48c4Sopenharmony_ci  their implementation and asked for a solution.
854da0c48c4Sopenharmony_ci- libebl: Add support for STB_GNU_UNIQUE.
855da0c48c4Sopenharmony_ci- elflint: Add support for STB_GNU_UNIQUE.
856da0c48c4Sopenharmony_ci- readelf: Add -N option, speeds up DWARF printing without address->name lookups.
857da0c48c4Sopenharmony_ci- libdw: Add support for decoding DWARF CFI into location description form.
858da0c48c4Sopenharmony_ci  Handle some new DWARF 3 expression operations previously omitted.
859da0c48c4Sopenharmony_ci  Basic handling of some new encodings slated for DWARF
860da0c48c4Sopenharmony_ci
861da0c48c4Sopenharmony_ci* Thu Apr 23 2009 Ulrich Drepper <drepper@redhat.com> 0.141-1
862da0c48c4Sopenharmony_ci- libebl: sparc backend fixes; 	some more arm backend support
863da0c48c4Sopenharmony_ci- libdwfl: fix dwfl_module_build_id for prelinked DSO case;
864da0c48c4Sopenharmony_ci  fixes in core file support; 	 dwfl_module_getsym interface
865da0c48c4Sopenharmony_ci  improved for non-address symbols
866da0c48c4Sopenharmony_ci- strip: fix infinite loop on strange inputs with -f
867da0c48c4Sopenharmony_ci- addr2line: take -j/--section=NAME option for binutils compatibility
868da0c48c4Sopenharmony_ci  	   (same effect as '(NAME)0x123' syntax already supported)
869da0c48c4Sopenharmony_ci
870da0c48c4Sopenharmony_ci* Mon Feb 16 2009 Ulrich Drepper <drepper@redhat.com> 0.140-1
871da0c48c4Sopenharmony_ci- libelf: Fix regression in creation of section header
872da0c48c4Sopenharmony_ci- libdwfl: Less strict behavior if DWARF reader is just used to
873da0c48c4Sopenharmony_ci  display data
874da0c48c4Sopenharmony_ci
875da0c48c4Sopenharmony_ci* Thu Jan 22 2009 Ulrich Drepper <drepper@redhat.com> 0.139-1
876da0c48c4Sopenharmony_ci- libcpu: Add Intel SSE4 disassembler support
877da0c48c4Sopenharmony_ci- readelf: Implement call frame information and exception handling
878da0c48c4Sopenharmony_ci  dumping.          Add -e option.  Enable it implicitly for -a.
879da0c48c4Sopenharmony_ci- elflint: Check PT_GNU_EH_FRAME program header entry.
880da0c48c4Sopenharmony_ci- libdwfl: Support automatic gzip/bzip2 decompression of ELF files.
881da0c48c4Sopenharmony_ci
882da0c48c4Sopenharmony_ci* Wed Dec 31 2008 Roland McGrath <roland@redhat.com> 0.138-1
883da0c48c4Sopenharmony_ci- Install <elfutils/version.h> header file for applications to use in
884da0c48c4Sopenharmony_ci  source version compatibility checks.
885da0c48c4Sopenharmony_ci- libebl: backend fixes for i386 TLS relocs; backend support for
886da0c48c4Sopenharmony_ci  NT_386_IOPERM
887da0c48c4Sopenharmony_ci- libcpu: disassembler fixes
888da0c48c4Sopenharmony_ci- libdwfl: bug fixes
889da0c48c4Sopenharmony_ci- libelf: bug fixes
890da0c48c4Sopenharmony_ci- nm: bug fixes for handling corrupt input files
891da0c48c4Sopenharmony_ci
892da0c48c4Sopenharmony_ci* Tue Aug 26 2008 Ulrich Drepper <drepper@redhat.com> 0.137-1
893da0c48c4Sopenharmony_ci- Minor fixes for unreleased 0.136 release.
894da0c48c4Sopenharmony_ci
895da0c48c4Sopenharmony_ci* Mon Aug 25 2008 Ulrich Drepper <drepper@redhat.com> 0.136-1
896da0c48c4Sopenharmony_ci- libdwfl: bug fixes; new segment interfaces;	 all the libdwfl-based
897da0c48c4Sopenharmony_ci tools now support --core=COREFILE option
898da0c48c4Sopenharmony_ci
899da0c48c4Sopenharmony_ci* Mon May 12 2008 Ulrich Drepper <drepper@redhat.com> 0.135-1
900da0c48c4Sopenharmony_ci- libdwfl: bug fixes
901da0c48c4Sopenharmony_ci- strip: changed handling of ET_REL files wrt symbol tables and relocs
902da0c48c4Sopenharmony_ci
903da0c48c4Sopenharmony_ci* Tue Apr  8 2008 Ulrich Drepper <drepper@redhat.com> 0.134-1
904da0c48c4Sopenharmony_ci- elflint: backend improvements for sparc, alpha
905da0c48c4Sopenharmony_ci- libdwfl, libelf: bug fixes
906da0c48c4Sopenharmony_ci
907da0c48c4Sopenharmony_ci* Sat Mar  1 2008 Ulrich Drepper <drepper@redhat.com> 0.133-1
908da0c48c4Sopenharmony_ci- readelf, elflint, libebl: SHT_GNU_ATTRIBUTE section handling (readelf -A)
909da0c48c4Sopenharmony_ci- readelf: core note handling for NT_386_TLS, NT_PPC_SPE, Alpha NT_AUXV
910da0c48c4Sopenharmony_ci- libdwfl: bug fixes and optimization in relocation handling
911da0c48c4Sopenharmony_ci- elfcmp: bug fix for non-allocated section handling
912da0c48c4Sopenharmony_ci- ld: implement newer features of binutils linker.
913da0c48c4Sopenharmony_ci
914da0c48c4Sopenharmony_ci* Mon Jan 21 2008 Ulrich Drepper <drepper@redhat.com> 0.132-1
915da0c48c4Sopenharmony_ci- libcpu: Implement x86 and x86-64 disassembler.
916da0c48c4Sopenharmony_ci- libasm: Add interface for disassembler.
917da0c48c4Sopenharmony_ci- all programs: add debugging of branch prediction.
918da0c48c4Sopenharmony_ci- libelf: new function elf_scnshndx.
919da0c48c4Sopenharmony_ci
920da0c48c4Sopenharmony_ci* Sun Nov 11 2007 Ulrich Drepper <drepper@redhat.com> 0.131-1
921da0c48c4Sopenharmony_ci- libdw: DW_FORM_ref_addr support; dwarf_formref entry point now depreca
922da0c48c4Sopenharmony_cited;       bug fixes for oddly-formatted DWARF
923da0c48c4Sopenharmony_ci- libdwfl: bug fixes in offline archive support, symbol table handling;
924da0c48c4Sopenharmony_ci	 apply partial relocations for dwfl_module_address_section on
925da0c48c4Sopenharmony_ciET_REL
926da0c48c4Sopenharmony_ci- libebl: powerpc backend support for Altivec registers
927da0c48c4Sopenharmony_ci
928da0c48c4Sopenharmony_ci* Mon Oct 15 2007 Ulrich Drepper <drepper@redhat.com> 0.130-1
929da0c48c4Sopenharmony_ci- readelf: -p option can take an argument like -x for one section,
930da0c48c4Sopenharmony_ci	 or no argument (as before) for all SHF_STRINGS sections;
931da0c48c4Sopenharmony_ci	 new option --archive-index (or -c);	 improved -n output for
932da0c48c4Sopenharmony_cicore files, on many machines
933da0c48c4Sopenharmony_ci- libelf: new function elf_getdata_rawchunk, replaces gelf_rawchunk;
934da0c48c4Sopenharmony_ci	new functions gelf_getnote, gelf_getauxv, gelf_update_auxv
935da0c48c4Sopenharmony_ci- readelf, elflint: handle SHT_NOTE sections without requiring phdrs
936da0c48c4Sopenharmony_ci- elflint: stricter checks on debug sections
937da0c48c4Sopenharmony_ci- libdwfl: new functions dwfl_build_id_find_elf, dwfl_build_id_find_debu
938da0c48c4Sopenharmony_ciginfo,	 dwfl_module_build_id, dwfl_module_report_build_id;	 suppo
939da0c48c4Sopenharmony_cirt dynamic symbol tables found via phdrs;	 dwfl_standard_find_de
940da0c48c4Sopenharmony_cibuginfo now uses build IDs when available
941da0c48c4Sopenharmony_ci- unstrip: new option --list (or -n)
942da0c48c4Sopenharmony_ci- libebl: backend improvements for sparc, alpha, powerpc
943da0c48c4Sopenharmony_ci
944da0c48c4Sopenharmony_ci* Tue Aug 14 2007 Ulrich Drepper <drepper@redhat.com> 0.129-1
945da0c48c4Sopenharmony_ci- readelf: new options --hex-dump (or -x), --strings (or -p)
946da0c48c4Sopenharmony_ci- addr2line: new option --symbols (or -S)
947da0c48c4Sopenharmony_ci
948da0c48c4Sopenharmony_ci* Wed Apr 18 2007 Ulrich Drepper <drepper@redhat.com> 0.127-1
949da0c48c4Sopenharmony_ci- libdw: new function dwarf_getsrcdirs
950da0c48c4Sopenharmony_ci- libdwfl: new functions dwfl_module_addrsym, dwfl_report_begin_add,
951da0c48c4Sopenharmony_ci	 dwfl_module_address_section
952da0c48c4Sopenharmony_ci
953da0c48c4Sopenharmony_ci* Mon Feb  5 2007 Ulrich Drepper <drepper@redhat.com> 0.126-1
954da0c48c4Sopenharmony_ci- new program: ar
955da0c48c4Sopenharmony_ci
956da0c48c4Sopenharmony_ci* Mon Dec 18 2006 Ulrich Drepper <drepper@redhat.com> 0.125-1
957da0c48c4Sopenharmony_ci- elflint: Compare DT_GNU_HASH tests.
958da0c48c4Sopenharmony_ci- move archives into -static RPMs
959da0c48c4Sopenharmony_ci- libelf, elflint: better support for core file handling
960da0c48c4Sopenharmony_ci
961da0c48c4Sopenharmony_ci* Tue Oct 10 2006 Ulrich Drepper <drepper@redhat.com> 0.124-1
962da0c48c4Sopenharmony_ci- libebl: sparc backend support for return value location
963da0c48c4Sopenharmony_ci- libebl, libdwfl: backend register name support extended with more info
964da0c48c4Sopenharmony_ci- libelf, libdw: bug fixes for unaligned accesses on machines that care
965da0c48c4Sopenharmony_ci- readelf, elflint: trivial bugs fixed
966da0c48c4Sopenharmony_ci
967da0c48c4Sopenharmony_ci* Mon Aug 14 2006 Roland McGrath <roland@redhat.com> 0.123-1
968da0c48c4Sopenharmony_ci- libebl: Backend build fixes, thanks to Stepan Kasal.
969da0c48c4Sopenharmony_ci- libebl: ia64 backend support for register names, return value location
970da0c48c4Sopenharmony_ci- libdwfl: Handle truncated linux kernel module section names.
971da0c48c4Sopenharmony_ci- libdwfl: Look for linux kernel vmlinux files with .debug suffix.
972da0c48c4Sopenharmony_ci- elflint: Fix checks to permit --hash-style=gnu format.
973da0c48c4Sopenharmony_ci
974da0c48c4Sopenharmony_ci* Wed Jul 12 2006 Ulrich Drepper <drepper@redhat.com> 0.122-1
975da0c48c4Sopenharmony_ci- libebl: add function to test for relative relocation
976da0c48c4Sopenharmony_ci- elflint: fix and extend DT_RELCOUNT/DT_RELACOUNT checks
977da0c48c4Sopenharmony_ci- elflint, readelf: add support for DT_GNU_HASHlibelf: add elf_gnu_hash
978da0c48c4Sopenharmony_ci- elflint, readelf: add support for 64-bit SysV-style hash tables
979da0c48c4Sopenharmony_ci- libdwfl: new functions dwfl_module_getsymtab, dwfl_module_getsym.
980da0c48c4Sopenharmony_ci
981da0c48c4Sopenharmony_ci* Wed Jun 14 2006  <drepper@redhat.com> 0.121-1
982da0c48c4Sopenharmony_ci- libelf: bug fixes for rewriting existing files when using mmap.
983da0c48c4Sopenharmony_ci- make all installed headers usable in C++ code.
984da0c48c4Sopenharmony_ci- readelf: better output format.
985da0c48c4Sopenharmony_ci- elflint: fix tests of dynamic section content.
986da0c48c4Sopenharmony_ci- ld: Implement --as-needed, --execstack, PT_GNU_STACK.  Many small patc
987da0c48c4Sopenharmony_cihes.
988da0c48c4Sopenharmony_ci- libdw, libdwfl: handle files without aranges info.
989da0c48c4Sopenharmony_ci
990da0c48c4Sopenharmony_ci* Tue Apr  4 2006 Ulrich Drepper <drepper@redhat.com> 0.120-1
991da0c48c4Sopenharmony_ci- Bug fixes.
992da0c48c4Sopenharmony_ci- dwarf.h updated for DWARF 3.0 final specification.
993da0c48c4Sopenharmony_ci- libdwfl: New function dwfl_version.
994da0c48c4Sopenharmony_ci- The license is now GPL for most files.  The libelf, libebl, libdw,and
995da0c48c4Sopenharmony_cilibdwfl libraries have additional exceptions.  Add reference toOIN.
996da0c48c4Sopenharmony_ci
997da0c48c4Sopenharmony_ci* Thu Jan 12 2006 Roland McGrath <roland@redhat.com> 0.119-1
998da0c48c4Sopenharmony_ci- elflint: more tests.
999da0c48c4Sopenharmony_ci- libdwfl: New function dwfl_module_register_names.
1000da0c48c4Sopenharmony_ci- libebl: New backend hook for register names.
1001da0c48c4Sopenharmony_ci
1002da0c48c4Sopenharmony_ci* Tue Dec  6 2005 Ulrich Drepper <drepper@redhat.com> 0.118-1
1003da0c48c4Sopenharmony_ci- elflint: more tests.
1004da0c48c4Sopenharmony_ci- libdwfl: New function dwfl_module_register_names.
1005da0c48c4Sopenharmony_ci- libebl: New backend hook for register names.
1006da0c48c4Sopenharmony_ci
1007da0c48c4Sopenharmony_ci* Thu Nov 17 2005 Ulrich Drepper <drepper@redhat.com> 0.117-1
1008da0c48c4Sopenharmony_ci- libdwfl: New function dwfl_module_return_value_location.
1009da0c48c4Sopenharmony_ci- libebl: Backend improvements for several CPUs.
1010da0c48c4Sopenharmony_ci
1011da0c48c4Sopenharmony_ci* Mon Oct 31 2005 Ulrich Drepper <drepper@redhat.com> 0.116-1
1012da0c48c4Sopenharmony_ci- libdw: New functions dwarf_ranges, dwarf_entrypc, dwarf_diecu,       d
1013da0c48c4Sopenharmony_ciwarf_entry_breakpoints.  Removed Dwarf_Func type and functions       d
1014da0c48c4Sopenharmony_ciwarf_func_name, dwarf_func_lowpc, dwarf_func_highpc,       dwarf_func_
1015da0c48c4Sopenharmony_cientrypc, dwarf_func_die; dwarf_getfuncs callback now uses       Dwarf_
1016da0c48c4Sopenharmony_ciDie, and dwarf_func_file, dwarf_func_line, dwarf_func_col       replac
1017da0c48c4Sopenharmony_cied by dwarf_decl_file, dwarf_decl_line, dwarf_decl_column;       dwarf
1018da0c48c4Sopenharmony_ci_func_inline, dwarf_func_inline_instances now take Dwarf_Die.       Ty
1019da0c48c4Sopenharmony_cipe Dwarf_Loc renamed to Dwarf_Op; dwarf_getloclist,       dwarf_addrlo
1020da0c48c4Sopenharmony_ciclists renamed dwarf_getlocation, dwarf_getlocation_addr.
1021da0c48c4Sopenharmony_ci
1022da0c48c4Sopenharmony_ci* Fri Sep  2 2005 Ulrich Drepper <drepper@redhat.com> 0.115-1
1023da0c48c4Sopenharmony_ci- libelf: speed-ups of non-mmap reading.
1024da0c48c4Sopenharmony_ci- strings: New program.
1025da0c48c4Sopenharmony_ci- Implement --enable-gcov option for configure.
1026da0c48c4Sopenharmony_ci- libdw: New function dwarf_getscopes_die.
1027da0c48c4Sopenharmony_ci
1028da0c48c4Sopenharmony_ci* Wed Aug 24 2005 Ulrich Drepper <drepper@redhat.com> 0.114-1
1029da0c48c4Sopenharmony_ci- libelf: new function elf_getaroff
1030da0c48c4Sopenharmony_ci- libdw: Added dwarf_func_die, dwarf_func_inline, dwarf_func_inline_inst
1031da0c48c4Sopenharmony_ciances.
1032da0c48c4Sopenharmony_ci- libdwfl: New functions dwfl_report_offline, dwfl_offline_section_addre
1033da0c48c4Sopenharmony_ciss,	 dwfl_linux_kernel_report_offline.
1034da0c48c4Sopenharmony_ci- ranlib: new program
1035da0c48c4Sopenharmony_ci
1036da0c48c4Sopenharmony_ci* Mon Aug 15 2005 Ulrich Drepper <drepper@redhat.com> 0.114-1
1037da0c48c4Sopenharmony_ci- libelf: new function elf_getaroff
1038da0c48c4Sopenharmony_ci- ranlib: new program
1039da0c48c4Sopenharmony_ci
1040da0c48c4Sopenharmony_ci* Wed Aug 10 2005 Ulrich Drepper <@redhat.com> 0.113-1
1041da0c48c4Sopenharmony_ci- elflint: relax a bit. Allow version definitions for defined symbols ag
1042da0c48c4Sopenharmony_ciainstDSO versions also for symbols in nobits sections.  Allow .rodata
1043da0c48c4Sopenharmony_cisectionto have STRINGS and MERGE flag set.
1044da0c48c4Sopenharmony_ci- strip: add some more compatibility with binutils.
1045da0c48c4Sopenharmony_ci
1046da0c48c4Sopenharmony_ci* Sat Aug  6 2005 Ulrich Drepper <@redhat.com> 0.113-1
1047da0c48c4Sopenharmony_ci- elflint: relax a bit. Allow version definitions for defined symbols ag
1048da0c48c4Sopenharmony_ciainstDSO versions also for symbols in nobits sections.  Allow .rodata
1049da0c48c4Sopenharmony_cisectionto have STRINGS and MERGE flag set.
1050da0c48c4Sopenharmony_ci
1051da0c48c4Sopenharmony_ci* Sat Aug  6 2005 Ulrich Drepper <@redhat.com> 0.113-1
1052da0c48c4Sopenharmony_ci- elflint: relax a bit. Allow version definitions for defined symbols ag
1053da0c48c4Sopenharmony_ciainstDSO versions also for symbols in nobits sections.
1054da0c48c4Sopenharmony_ci
1055da0c48c4Sopenharmony_ci* Fri Aug  5 2005 Ulrich Drepper <@redhat.com> 0.112-1
1056da0c48c4Sopenharmony_ci- elfcmp: some more relaxation.
1057da0c48c4Sopenharmony_ci- elflint: many more tests, especially regarding to symbol versioning.
1058da0c48c4Sopenharmony_ci- libelf: Add elfXX_offscn and gelf_offscn.
1059da0c48c4Sopenharmony_ci- libasm: asm_begin interface changes.
1060da0c48c4Sopenharmony_ci- libebl: Add three new interfaces to directly access machine, class, an
1061da0c48c4Sopenharmony_ciddata encoding information.
1062da0c48c4Sopenharmony_ci- objdump: New program.  Just the beginning.
1063da0c48c4Sopenharmony_ci
1064da0c48c4Sopenharmony_ci* Thu Jul 28 2005 Ulrich Drepper <@redhat.com> 0.111-1
1065da0c48c4Sopenharmony_ci- libdw: now contains all of libdwfl.  The latter is not installed anymore.
1066da0c48c4Sopenharmony_ci- elfcmp: little usability tweak, name and index of differing section is
1067da0c48c4Sopenharmony_ci printed.
1068da0c48c4Sopenharmony_ci
1069da0c48c4Sopenharmony_ci* Sun Jul 24 2005 Ulrich Drepper <@redhat.com> 0.110-1
1070da0c48c4Sopenharmony_ci- libelf: fix a numbe rof problems with elf_update
1071da0c48c4Sopenharmony_ci- elfcmp: fix a few bugs.  Compare gaps.
1072da0c48c4Sopenharmony_ci- Fix a few PLT problems and mudflap build issues.
1073da0c48c4Sopenharmony_ci- libebl: Don't expose Ebl structure definition in libebl.h.  It's now p
1074da0c48c4Sopenharmony_cirivate.
1075da0c48c4Sopenharmony_ci
1076da0c48c4Sopenharmony_ci* Thu Jul 21 2005 Ulrich Drepper <@redhat.com> 0.109-1
1077da0c48c4Sopenharmony_ci- libebl: Check for matching modules.
1078da0c48c4Sopenharmony_ci- elflint: Check that copy relocations only happen for OBJECT or NOTYPE
1079da0c48c4Sopenharmony_cisymbols.
1080da0c48c4Sopenharmony_ci- elfcmp: New program.
1081da0c48c4Sopenharmony_ci- libdwfl: New library.
1082da0c48c4Sopenharmony_ci
1083da0c48c4Sopenharmony_ci* Mon May  9 2005 Ulrich Drepper <@redhat.com> 0.108-1
1084da0c48c4Sopenharmony_ci- strip: fix bug introduced in last change
1085da0c48c4Sopenharmony_ci- libdw: records returned by dwarf_getsrclines are now sorted by address
1086da0c48c4Sopenharmony_ci
1087da0c48c4Sopenharmony_ci* Sun May  8 2005 Ulrich Drepper <@redhat.com> 0.108-1
1088da0c48c4Sopenharmony_ci- strip: fix bug introduced in last change
1089da0c48c4Sopenharmony_ci
1090da0c48c4Sopenharmony_ci* Sun May  8 2005 Ulrich Drepper <@redhat.com> 0.107-1
1091da0c48c4Sopenharmony_ci- readelf: improve DWARF output format
1092da0c48c4Sopenharmony_ci- strip: support Linux kernel modules
1093da0c48c4Sopenharmony_ci
1094da0c48c4Sopenharmony_ci* Fri Apr 29 2005 Ulrich Drepper <drepper@redhat.com> 0.107-1
1095da0c48c4Sopenharmony_ci- readelf: improve DWARF output format
1096da0c48c4Sopenharmony_ci
1097da0c48c4Sopenharmony_ci* Mon Apr  4 2005 Ulrich Drepper <drepper@redhat.com> 0.106-1
1098da0c48c4Sopenharmony_ci- libdw: Updated dwarf.h from DWARF3 speclibdw: add new functions dwarf_f
1099da0c48c4Sopenharmony_ciunc_entrypc, dwarf_func_file, dwarf_func_line,dwarf_func_col, dwarf_ge
1100da0c48c4Sopenharmony_citsrc_file
1101da0c48c4Sopenharmony_ci
1102da0c48c4Sopenharmony_ci* Fri Apr  1 2005 Ulrich Drepper <drepper@redhat.com> 0.105-1
1103da0c48c4Sopenharmony_ci- addr2line: New program
1104da0c48c4Sopenharmony_ci- libdw: add new functions: dwarf_addrdie, dwarf_macro_*, dwarf_getfuncs
1105da0c48c4Sopenharmony_ci,dwarf_func_*.
1106da0c48c4Sopenharmony_ci- findtextrel: use dwarf_addrdie
1107da0c48c4Sopenharmony_ci
1108da0c48c4Sopenharmony_ci* Mon Mar 28 2005 Ulrich Drepper <drepper@redhat.com> 0.104-1
1109da0c48c4Sopenharmony_ci- findtextrel: New program.
1110da0c48c4Sopenharmony_ci
1111da0c48c4Sopenharmony_ci* Mon Mar 21 2005 Ulrich Drepper <drepper@redhat.com> 0.103-1
1112da0c48c4Sopenharmony_ci- libdw: Fix using libdw.h with gcc < 4 and C++ code.  Compiler bug.
1113da0c48c4Sopenharmony_ci
1114da0c48c4Sopenharmony_ci* Tue Feb 22 2005 Ulrich Drepper <drepper@redhat.com> 0.102-1
1115da0c48c4Sopenharmony_ci- More Makefile and spec file cleanups.
1116da0c48c4Sopenharmony_ci
1117da0c48c4Sopenharmony_ci* Fri Jan 16 2004 Jakub Jelinek <jakub@redhat.com> 0.94-1
1118da0c48c4Sopenharmony_ci- upgrade to 0.94
1119da0c48c4Sopenharmony_ci
1120da0c48c4Sopenharmony_ci* Fri Jan 16 2004 Jakub Jelinek <jakub@redhat.com> 0.93-1
1121da0c48c4Sopenharmony_ci- upgrade to 0.93
1122da0c48c4Sopenharmony_ci
1123da0c48c4Sopenharmony_ci* Thu Jan  8 2004 Jakub Jelinek <jakub@redhat.com> 0.92-1
1124da0c48c4Sopenharmony_ci- full version
1125da0c48c4Sopenharmony_ci- macroized spec file for GPL or OSL builds
1126da0c48c4Sopenharmony_ci- include only libelf under GPL plus wrapper scripts
1127da0c48c4Sopenharmony_ci
1128da0c48c4Sopenharmony_ci* Wed Jan  7 2004 Jakub Jelinek <jakub@redhat.com> 0.91-2
1129da0c48c4Sopenharmony_ci- macroized spec file for GPL or OSL builds
1130da0c48c4Sopenharmony_ci
1131da0c48c4Sopenharmony_ci* Wed Jan  7 2004 Ulrich Drepper <drepper@redhat.com>
1132da0c48c4Sopenharmony_ci- split elfutils-devel into two packages.
1133da0c48c4Sopenharmony_ci
1134da0c48c4Sopenharmony_ci* Wed Jan  7 2004 Jakub Jelinek <jakub@redhat.com> 0.91-1
1135da0c48c4Sopenharmony_ci- include only libelf under GPL plus wrapper scripts
1136da0c48c4Sopenharmony_ci
1137da0c48c4Sopenharmony_ci* Tue Dec 23 2003 Jeff Johnson <jbj@redhat.com> 0.89-3
1138da0c48c4Sopenharmony_ci- readelf, not readline, in %%description (#111214).
1139da0c48c4Sopenharmony_ci
1140da0c48c4Sopenharmony_ci* Fri Sep 26 2003 Bill Nottingham <notting@redhat.com> 0.89-1
1141da0c48c4Sopenharmony_ci- update to 0.89 (fix eu-strip)
1142da0c48c4Sopenharmony_ci
1143da0c48c4Sopenharmony_ci* Tue Sep 23 2003 Jakub Jelinek <jakub@redhat.com> 0.86-3
1144da0c48c4Sopenharmony_ci- update to 0.86 (fix eu-strip on s390x/alpha)
1145da0c48c4Sopenharmony_ci- libebl is an archive now; remove references to DSO
1146da0c48c4Sopenharmony_ci
1147da0c48c4Sopenharmony_ci* Mon Jul 14 2003 Jeff Johnson <jbj@redhat.com> 0.84-3
1148da0c48c4Sopenharmony_ci- upgrade to 0.84 (readelf/elflint improvements, rawhide bugs fixed).
1149da0c48c4Sopenharmony_ci
1150da0c48c4Sopenharmony_ci* Fri Jul 11 2003 Jeff Johnson <jbj@redhat.com> 0.83-3
1151da0c48c4Sopenharmony_ci- upgrade to 0.83 (fix invalid ELf handle on *.so strip, more).
1152da0c48c4Sopenharmony_ci
1153da0c48c4Sopenharmony_ci* Wed Jul  9 2003 Jeff Johnson <jbj@redhat.com> 0.82-3
1154da0c48c4Sopenharmony_ci- upgrade to 0.82 (strip tests fixed on big-endian).
1155da0c48c4Sopenharmony_ci
1156da0c48c4Sopenharmony_ci* Tue Jul  8 2003 Jeff Johnson <jbj@redhat.com> 0.81-3
1157da0c48c4Sopenharmony_ci- upgrade to 0.81 (strip excludes unused symtable entries, test borked).
1158da0c48c4Sopenharmony_ci
1159da0c48c4Sopenharmony_ci* Thu Jun 26 2003 Jeff Johnson <jbj@redhat.com> 0.80-3
1160da0c48c4Sopenharmony_ci- upgrade to 0.80 (debugedit changes for kernel in progress).
1161da0c48c4Sopenharmony_ci
1162da0c48c4Sopenharmony_ci* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
1163da0c48c4Sopenharmony_ci- rebuilt
1164da0c48c4Sopenharmony_ci
1165da0c48c4Sopenharmony_ci* Wed May 21 2003 Jeff Johnson <jbj@redhat.com> 0.79-2
1166da0c48c4Sopenharmony_ci- upgrade to 0.79 (correct formats for size_t, more of libdw "works").
1167da0c48c4Sopenharmony_ci
1168da0c48c4Sopenharmony_ci* Mon May 19 2003 Jeff Johnson <jbj@redhat.com> 0.78-2
1169da0c48c4Sopenharmony_ci- upgrade to 0.78 (libdwarf bugfix, libdw additions).
1170da0c48c4Sopenharmony_ci
1171da0c48c4Sopenharmony_ci* Mon Feb 24 2003 Elliot Lee <sopwith@redhat.com>
1172da0c48c4Sopenharmony_ci- debuginfo rebuild
1173da0c48c4Sopenharmony_ci
1174da0c48c4Sopenharmony_ci* Thu Feb 20 2003 Jeff Johnson <jbj@redhat.com> 0.76-2
1175da0c48c4Sopenharmony_ci- use the correct way of identifying the section via the sh_info link.
1176da0c48c4Sopenharmony_ci
1177da0c48c4Sopenharmony_ci* Sat Feb 15 2003 Jakub Jelinek <jakub@redhat.com> 0.75-2
1178da0c48c4Sopenharmony_ci- update to 0.75 (eu-strip -g fix)
1179da0c48c4Sopenharmony_ci
1180da0c48c4Sopenharmony_ci* Tue Feb 11 2003 Jakub Jelinek <jakub@redhat.com> 0.74-2
1181da0c48c4Sopenharmony_ci- update to 0.74 (fix for writing with some non-dirty sections)
1182da0c48c4Sopenharmony_ci
1183da0c48c4Sopenharmony_ci* Thu Feb  6 2003 Jeff Johnson <jbj@redhat.com> 0.73-3
1184da0c48c4Sopenharmony_ci- another -0.73 update (with sparc fixes).
1185da0c48c4Sopenharmony_ci- do "make check" in %%check, not %%install, section.
1186da0c48c4Sopenharmony_ci
1187da0c48c4Sopenharmony_ci* Mon Jan 27 2003 Jeff Johnson <jbj@redhat.com> 0.73-2
1188da0c48c4Sopenharmony_ci- update to 0.73 (with s390 fixes).
1189da0c48c4Sopenharmony_ci
1190da0c48c4Sopenharmony_ci* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
1191da0c48c4Sopenharmony_ci- rebuilt
1192da0c48c4Sopenharmony_ci
1193da0c48c4Sopenharmony_ci* Wed Jan 22 2003 Jakub Jelinek <jakub@redhat.com> 0.72-4
1194da0c48c4Sopenharmony_ci- fix arguments to gelf_getsymshndx and elf_getshstrndx
1195da0c48c4Sopenharmony_ci- fix other warnings
1196da0c48c4Sopenharmony_ci- re-enable checks on s390x
1197da0c48c4Sopenharmony_ci
1198da0c48c4Sopenharmony_ci* Sat Jan 11 2003 Karsten Hopp <karsten@redhat.de> 0.72-3
1199da0c48c4Sopenharmony_ci- temporarily disable checks on s390x, until someone has
1200da0c48c4Sopenharmony_ci  time to look at it
1201da0c48c4Sopenharmony_ci
1202da0c48c4Sopenharmony_ci* Thu Dec 12 2002 Jakub Jelinek <jakub@redhat.com> 0.72-2
1203da0c48c4Sopenharmony_ci- update to 0.72
1204da0c48c4Sopenharmony_ci
1205da0c48c4Sopenharmony_ci* Wed Dec 11 2002 Jakub Jelinek <jakub@redhat.com> 0.71-2
1206da0c48c4Sopenharmony_ci- update to 0.71
1207da0c48c4Sopenharmony_ci
1208da0c48c4Sopenharmony_ci* Wed Dec 11 2002 Jeff Johnson <jbj@redhat.com> 0.69-4
1209da0c48c4Sopenharmony_ci- update to 0.69.
1210da0c48c4Sopenharmony_ci- add "make check" and segfault avoidance patch.
1211da0c48c4Sopenharmony_ci- elfutils-libelf needs to run ldconfig.
1212da0c48c4Sopenharmony_ci
1213da0c48c4Sopenharmony_ci* Tue Dec 10 2002 Jeff Johnson <jbj@redhat.com> 0.68-2
1214da0c48c4Sopenharmony_ci- update to 0.68.
1215da0c48c4Sopenharmony_ci
1216da0c48c4Sopenharmony_ci* Fri Dec  6 2002 Jeff Johnson <jbj@redhat.com> 0.67-2
1217da0c48c4Sopenharmony_ci- update to 0.67.
1218da0c48c4Sopenharmony_ci
1219da0c48c4Sopenharmony_ci* Tue Dec  3 2002 Jeff Johnson <jbj@redhat.com> 0.65-2
1220da0c48c4Sopenharmony_ci- update to 0.65.
1221da0c48c4Sopenharmony_ci
1222da0c48c4Sopenharmony_ci* Mon Dec  2 2002 Jeff Johnson <jbj@redhat.com> 0.64-2
1223da0c48c4Sopenharmony_ci- update to 0.64.
1224da0c48c4Sopenharmony_ci
1225da0c48c4Sopenharmony_ci* Sun Dec 1 2002 Ulrich Drepper <drepper@redhat.com> 0.64
1226da0c48c4Sopenharmony_ci- split packages further into elfutils-libelf
1227da0c48c4Sopenharmony_ci
1228da0c48c4Sopenharmony_ci* Sat Nov 30 2002 Jeff Johnson <jbj@redhat.com> 0.63-2
1229da0c48c4Sopenharmony_ci- update to 0.63.
1230da0c48c4Sopenharmony_ci
1231da0c48c4Sopenharmony_ci* Fri Nov 29 2002 Ulrich Drepper <drepper@redhat.com> 0.62
1232da0c48c4Sopenharmony_ci- Adjust for dropping libtool
1233da0c48c4Sopenharmony_ci
1234da0c48c4Sopenharmony_ci* Sun Nov 24 2002 Jeff Johnson <jbj@redhat.com> 0.59-2
1235da0c48c4Sopenharmony_ci- update to 0.59
1236da0c48c4Sopenharmony_ci
1237da0c48c4Sopenharmony_ci* Thu Nov 14 2002 Jeff Johnson <jbj@redhat.com> 0.56-2
1238da0c48c4Sopenharmony_ci- update to 0.56
1239da0c48c4Sopenharmony_ci
1240da0c48c4Sopenharmony_ci* Thu Nov  7 2002 Jeff Johnson <jbj@redhat.com> 0.54-2
1241da0c48c4Sopenharmony_ci- update to 0.54
1242da0c48c4Sopenharmony_ci
1243da0c48c4Sopenharmony_ci* Sun Oct 27 2002 Jeff Johnson <jbj@redhat.com> 0.53-2
1244da0c48c4Sopenharmony_ci- update to 0.53
1245da0c48c4Sopenharmony_ci- drop x86_64 hack, ICE fixed in gcc-3.2-11.
1246da0c48c4Sopenharmony_ci
1247da0c48c4Sopenharmony_ci* Sat Oct 26 2002 Jeff Johnson <jbj@redhat.com> 0.52-3
1248da0c48c4Sopenharmony_ci- get beehive to punch a rhpkg generated package.
1249da0c48c4Sopenharmony_ci
1250da0c48c4Sopenharmony_ci* Wed Oct 23 2002 Jeff Johnson <jbj@redhat.com> 0.52-2
1251da0c48c4Sopenharmony_ci- build in 8.0.1.
1252da0c48c4Sopenharmony_ci- x86_64: avoid gcc-3.2 ICE on x86_64 for now.
1253da0c48c4Sopenharmony_ci
1254da0c48c4Sopenharmony_ci* Tue Oct 22 2002 Ulrich Drepper <drepper@redhat.com> 0.52
1255da0c48c4Sopenharmony_ci- Add libelf-devel to conflicts for elfutils-devel
1256da0c48c4Sopenharmony_ci
1257da0c48c4Sopenharmony_ci* Mon Oct 21 2002 Ulrich Drepper <drepper@redhat.com> 0.50
1258da0c48c4Sopenharmony_ci- Split into runtime and devel package
1259da0c48c4Sopenharmony_ci
1260da0c48c4Sopenharmony_ci* Fri Oct 18 2002 Ulrich Drepper <drepper@redhat.com> 0.49
1261da0c48c4Sopenharmony_ci- integrate into official sources
1262da0c48c4Sopenharmony_ci
1263da0c48c4Sopenharmony_ci* Wed Oct 16 2002 Jeff Johnson <jbj@redhat.com> 0.46-1
1264da0c48c4Sopenharmony_ci- Swaddle.
1265