blob: e356c8fb6e20f292fb447b16c8c6e5975ef3d363 [file] [log] [blame]
Mark Wielaardfaf0d3d2015-06-19 13:43:58 +02001Version 0.163
2
3Bug fixes only, no new features.
4
Petr Machata7f617342015-03-18 19:42:02 +01005Version 0.162
6
7libdw: Install new header elfutils/known-dwarf.h.
Mark Wielaard027d9112015-06-10 17:44:42 +02008 dwarf.h Add preliminary DWARF5 constants DW_TAG_atomic_type,
9 DW_LANG_Fortran03, DW_LANG_Fortran08. dwarf_peel_type now also
10 handles DW_TAG_atomic_type.
Petr Machata7f617342015-03-18 19:42:02 +010011
Mark Wielaardd76d73f2015-05-19 23:08:00 +020012addr2line: Input addresses are now always interpreted as hexadecimal
13 numbers, never as octal or decimal numbers.
Mark Wielaard70a504d2015-05-19 16:21:27 +020014 New option -a, --addresses to print address before each entry.
Mark Wielaardcd2da6c2015-05-20 11:52:27 +020015 New option -C, --demangle to show demangled symbols.
Mark Wielaardb23a5b22015-05-20 14:09:46 +020016 New option --pretty-print to print all information on one line.
Mark Wielaardd76d73f2015-05-19 23:08:00 +020017
Mark Wielaard027d9112015-06-10 17:44:42 +020018ar: CVE-2014-9447 Directory traversal vulnerability in ar extraction.
19
20backends: x32 support.
21
Mark Wielaard3a36e8a2014-10-06 22:00:16 +020022Version 0.161
23
24libdw: New function dwarf_peel_type. dwarf_aggregate_size now uses
25 dwarf_peel_type to also provide the sizes of qualified types.
Petr Machatafb90bf32014-10-17 02:47:03 +020026 dwarf_getmacros will now serve either of .debug_macro and
27 .debug_macinfo transparently. New interfaces
28 dwarf_getmacros_off, dwarf_macro_getsrcfiles,
29 dwarf_macro_getparamcnt, and dwarf_macro_param are available
30 for more generalized inspection of macros and their parameters.
Mark Wielaard09dc83d2014-12-18 23:41:41 +010031 dwarf.h: Add DW_AT_GNU_deleted, DW_AT_noreturn, DW_LANG_C11,
32 DW_LANG_C_plus_plus_11 and DW_LANG_C_plus_plus_14.
Petr Machatafb90bf32014-10-17 02:47:03 +020033
Mark Wielaard22497092014-05-26 21:28:05 +020034Version 0.160
35
Mark Wielaardf18f2332014-08-15 16:03:21 +020036libdw: New functions dwarf_cu_getdwarf, dwarf_cu_die.
Mark Wielaard5efda262014-08-25 22:13:57 +020037 dwarf.h remove non-existing DW_TAG_mutable_type.
38
39libdwfl: Handle LZMA .ko.xz compressed kernel modules.
Mark Wielaard209f1492014-08-15 13:08:24 +020040
Mark Wielaard22497092014-05-26 21:28:05 +020041unstrip: New option -F, --force to combining files even if some ELF headers
42 don't seem to match.
43
Mark Wielaard5efda262014-08-25 22:13:57 +020044backends: Handle ARM THUMB functions. Add support for ppc64le ELFv2 abi.
45
Mark Wielaard531a30a2014-01-20 23:09:26 +010046Version 0.159
47
48stack: New option -d, --debugname to lookup DWARF debuginfo name for frame.
Mark Wielaard13968d92014-01-21 16:13:49 +010049 New option -i, --inlines to show inlined frames using DWARF debuginfo.
Mark Wielaard531a30a2014-01-20 23:09:26 +010050
Mark Wielaard93802972014-04-11 23:52:47 +020051libdwelf: New libdwelf.h header for libdw.so DWARF ELF Low-level Functions.
Mark Wielaardbb096d02014-05-03 00:23:06 +020052 New function dwelf_elf_gnu_debuglink, dwelf_dwarf_gnu_debugaltlink,
53 and dwelf_elf_gnu_build_id.
54
55libdw: Support for DWZ multifile forms DW_FORM_GNU_ref_alt and
56 DW_FORM_GNU_strp_alt is now enabled by default and no longer
57 experimental. Added new functions dwarf_getalt and dwarf_setalt
58 to get or set the alternative debug file used for the alt FORMs.
Mark Wielaardf05dff92014-05-18 00:28:26 +020059 The dwfl_linux_proc_find_elf callback will now find ELF from
60 process memory for (deleted) files if the Dwfl has process state
61 attached.
Mark Wielaardbb096d02014-05-03 00:23:06 +020062
63libdwfl: The dwfl_build_id_find_debuginfo and dwfl_standard_find_debuginfo
64 functions will now try to resolve and set the alternative debug file.
Mark Wielaard93802972014-04-11 23:52:47 +020065
Mark Wielaardf05dff92014-05-18 00:28:26 +020066backends: Add CFI unwinding for arm. Relies on .debug_frame.
67 Add arm process initial register state compatible mode to AARCH64.
68 Add aarch64 native and core unwind support.
69
70other: All separate elfutils-robustify patches have been merged.
71 CVE-2014-0172 Check overflow before calling malloc to uncompress data.
72
Jan Kratochvil3cf491e2013-10-30 10:48:20 +010073Version 0.158
74
75libdwfl: dwfl_core_file_report has new parameter executable.
Mark Wielaard159ac522013-12-18 11:05:54 +010076 New functions dwfl_module_getsymtab_first_global,
77 dwfl_module_getsym_info and dwfl_module_addrinfo.
Jan Kratochvil8aa7fbb2013-12-18 14:37:49 +010078 Added unwinder with type Dwfl_Thread_Callbacks, opaque types
79 Dwfl_Thread and Dwfl_Frame and functions dwfl_attach_state,
80 dwfl_pid, dwfl_thread_dwfl, dwfl_thread_tid, dwfl_frame_thread,
81 dwfl_thread_state_registers, dwfl_thread_state_register_pc,
Mark Wielaarde962ec32013-12-20 10:09:12 +010082 dwfl_getthread_frames, dwfl_getthreads, dwfl_thread_getframes
83 and dwfl_frame_pc.
Jan Kratochvil3cf491e2013-10-30 10:48:20 +010084
Mark Wielaard159ac522013-12-18 11:05:54 +010085addr2line: New option -x to show the section an address was found in.
86
Mark Wielaarde962ec32013-12-20 10:09:12 +010087stack: New utility that uses the new unwinder for processes and cores.
88
Mark Wielaard70db4cc2014-01-03 22:16:34 +010089backends: Unwinder support for i386, x86_64, s390, s390x, ppc and ppc64.
90 aarch64 support.
91
Mark Wielaardf36d7272013-09-27 14:02:26 +020092Version 0.157
93
94libdw: Add new functions dwarf_getlocations, dwarf_getlocation_attr
95 and dwarf_getlocation_die.
96
Mark Wielaardfb927572013-09-30 13:50:26 +020097readelf: Show contents of NT_SIGINFO and NT_FILE core notes.
98
Mark Wielaardf36d7272013-09-27 14:02:26 +020099addr2line: Support -i, --inlines output option.
100
101backends: abi_cfi hook for arm, ppc and s390.
102
Jan Kratochvil904aec22013-04-30 14:27:16 +0200103Version 0.156
104
Jan Kratochvila55b1182013-07-19 00:24:06 +0200105lib: New macro COMPAT_VERSION_NEWPROTO.
Jan Kratochvila55b1182013-07-19 00:24:06 +0200106
Jan Kratochvil934d36c2013-07-19 23:26:28 +0200107libdw: Handle GNU extension opcodes in dwarf_getlocation.
Jan Kratochvila55b1182013-07-19 00:24:06 +0200108
Jan Kratochvil934d36c2013-07-19 23:26:28 +0200109libdwfl: Fix STB_GLOBAL over STB_WEAK preference in dwfl_module_addrsym.
Jan Kratochvila55b1182013-07-19 00:24:06 +0200110 Add minisymtab support.
Jan Kratochvila55b1182013-07-19 00:24:06 +0200111 Add parameter add_p_vaddr to dwfl_report_elf.
112 Use DT_DEBUG library search first.
Jan Kratochvila55b1182013-07-19 00:24:06 +0200113
114libebl: Handle new core note types in EBL.
Jan Kratochvila55b1182013-07-19 00:24:06 +0200115
Jan Kratochvil934d36c2013-07-19 23:26:28 +0200116backends: Interpret NT_ARM_VFP.
Jan Kratochvila55b1182013-07-19 00:24:06 +0200117 Implement core file registers parsing for s390/s390x.
Jan Kratochvila55b1182013-07-19 00:24:06 +0200118
119readelf: Add --elf-section input option to inspect an embedded ELF file.
120 Add -U, --unresolved-address-offsets output control.
121 Add --debug-dump=decodedline support.
122 Accept version 8 .gdb_index section format.
Jan Kratochvila55b1182013-07-19 00:24:06 +0200123 Adjust output formatting width.
Jan Kratochvila55b1182013-07-19 00:24:06 +0200124 When highpc is in constant form print it also as address.
125 Display raw .debug_aranges. Use libdw only for decodedaranges.
Jan Kratochvila55b1182013-07-19 00:24:06 +0200126
127elflint: Add __bss_start__ to the list of allowed symbols.
128
129tests: Add configure --enable-valgrind option to run all tests under valgrind.
130 Enable automake parallel-tests for make check.
131
132translations: Updated Polish translation.
133
134Updates for Automake 1.13.
Jan Kratochvil904aec22013-04-30 14:27:16 +0200135
Mark Wielaardc4010b82012-07-24 13:20:41 +0200136Version 0.155
137
Mark Wielaard27751ed2012-08-22 09:57:36 +0200138libelf: elf*_xlatetomd now works for cross-endian ELF note data.
Mark Wielaarda2210f82012-08-21 12:22:08 +0200139 elf_getshdr now works consistently on non-mmaped ELF files after
140 calling elf_cntl(ELF_C_FDREAD).
141 Implement support for ar archives with 64-bit symbol table.
142
Mark Wielaardc4010b82012-07-24 13:20:41 +0200143libdw: dwarf.h corrected the DW_LANG_ObjC constant name (was DW_LANG_Objc).
144 Any existing sources using the old name will have to be updated.
Mark Wielaarda2210f82012-08-21 12:22:08 +0200145 Add DW_MACRO_GNU .debug_macro type encodings constants, DW_ATE_UTF
146 and DW_OP_GNU_parameter_ref to dwarf.h.
Mark Wielaardf5519fc2012-08-24 13:54:52 +0200147 Experimental support for DWZ multifile forms DW_FORM_GNU_ref_alt
148 and DW_FORM_GNU_strp_alt. Disabled by default. Use configure
149 --enable-dwz to test it.
Mark Wielaarda2210f82012-08-21 12:22:08 +0200150
151readelf: Add .debug_macro parsing support.
152 Add .gdb_index version 7 parsing support.
153 Recognize DW_OP_GNU_parameter_ref.
Mark Wielaardc4010b82012-07-24 13:20:41 +0200154
Mark Wielaard3cb9e8c2012-08-27 15:31:31 +0200155backends: Add support for Tilera TILE-Gx processor.
156
157translations: Updated Ukrainian translation.
158
Mark Wielaard54797252012-04-27 13:00:50 +0200159Version 0.154
160
Mark Wielaardd7bde9b2012-06-22 14:14:08 +0200161libelf: [g]elf[32|64]_offscn() do not match SHT_NOBITS sections at OFFSET.
162
Mark Wielaard54797252012-04-27 13:00:50 +0200163libdw: dwarf_highpc function now handles DWARF 4 DW_AT_high_pc constant form.
Mark Wielaardd7bde9b2012-06-22 14:14:08 +0200164 Fix bug using dwarf_next_unit to iterate over .debug_types.
165
166elflint: Now accepts gold linker produced executables.
Mark Wielaard54797252012-04-27 13:00:50 +0200167
Mark Wielaardde2ed972012-06-05 17:15:16 +0200168The license is now GPLv2/LGPLv3+ for the libraries and GPLv3+ for stand-alone
169programs. There is now also a formal CONTRIBUTING document describing how to
170submit patches.
171
Roland McGrath725aad52011-02-23 19:52:46 -0800172Version 0.153
173
174libdw: Support reading .zdebug_* DWARF sections compressed via zlib.
175
Mark Wielaard52d1f922012-01-22 19:28:20 +0100176libdwfl: Speed up dwfl_module_addrsym.
177
Ulrich Drepperb4a16cf2011-10-02 08:33:19 -0400178nm: Support C++ demangling.
179
Roland McGrathe5ba2a12011-11-05 21:08:07 -0700180ar: Support D modifier for "deterministic output" with no uid/gid/mtime info.
Roland McGrath6e063d92012-01-20 11:43:36 -0800181 The U modifier is the inverse.
Roland McGrath3284b792012-01-20 12:51:46 -0800182 elfutils can be configured with the --enable-deterministic-archives
183 option to make the D behavior the default when U is not specified.
Mark Wielaard52d1f922012-01-22 19:28:20 +0100184
Roland McGrath6e063d92012-01-20 11:43:36 -0800185ranlib: Support -D and -U flags with same meaning.
Roland McGrathe5ba2a12011-11-05 21:08:07 -0700186
Mark Wielaard52d1f922012-01-22 19:28:20 +0100187readelf: Improve output of -wline. Add support for printing SDT elf notes.
Roland McGratha77881a2012-01-23 10:34:17 -0800188 Add printing of .gdb_index section.
189 Support for typed DWARF stack, call_site and entry_value.
Mark Wielaard52d1f922012-01-22 19:28:20 +0100190
191strip: Add --reloc-debug-sections option.
192 Improved SHT_GROUP sections handling.
193
Roland McGrathf339cd62011-02-02 17:24:53 -0800194Version 0.152
195
Roland McGrath8a7b6232011-02-08 19:40:19 -0800196Various build and warning nits fixed for newest GCC and Autoconf.
197
Roland McGrathf339cd62011-02-02 17:24:53 -0800198libdwfl: Yet another prelink-related fix for another regression.
Roland McGrath788cc882011-02-11 12:38:36 -0800199 Look for Linux kernel images in files named with compression suffixes.
Roland McGrathf339cd62011-02-02 17:24:53 -0800200
Roland McGrath1fb9c912011-02-11 10:32:30 -0800201elfcmp: New flag --ignore-build-id to ignore differing build ID bits.
Roland McGrath4a14ef72011-02-11 10:42:45 -0800202 New flag -l/--verbose to print all differences.
Roland McGrath1fb9c912011-02-11 10:32:30 -0800203
Roland McGrathf6315952011-01-11 10:33:32 -0800204Version 0.151
205
206libdwfl: Fix for more prelink cases with separate debug file.
207
208strip: New flag --strip-sections to remove section headers entirely.
209
Roland McGrath65d8e4e2010-11-22 17:35:56 -0800210Version 0.150
211
212libdw: Fix for handling huge .debug_aranges section.
213
214libdwfl: Fix for handling prelinked DSO with separate debug file.
215
216findtextrel: Fix diagnostics to work with usual section ordering.
217
218libebl: i386 backend fix for multi-register integer return value location.
219
Roland McGrathde44f132010-08-24 15:38:42 -0700220Version 0.149:
221
Roland McGrath932585d2010-05-08 04:01:14 -0700222libdw: Decode new DW_OP_GNU_implicit_pointer operation;
223 new function dwarf_getlocation_implicit_pointer.
224
Roland McGrathde44f132010-08-24 15:38:42 -0700225libdwfl: New function dwfl_dwarf_line.
226
Roland McGrath5c45def2010-09-09 23:55:32 -0700227addr2line: New flag -F/--flags to print more DWARF line information details.
Roland McGrathde44f132010-08-24 15:38:42 -0700228
Roland McGrath6849dbb2010-09-09 23:26:12 -0700229strip: -g recognizes .gdb_index as a debugging section.
230
Roland McGrath1fa6bf42010-05-06 01:14:32 -0700231Version 0.148:
232
Roland McGrath2b1f0952010-06-20 17:55:50 -0700233libdw: Accept DWARF 4 format: new functions dwarf_next_unit, dwarf_offdie_types.
Roland McGrathc70cf4e2010-06-18 17:01:05 -0700234 New functions dwarf_lineisa, dwarf_linediscriminator, dwarf_lineop_index.
Roland McGrath3e4b5bb2010-06-16 03:40:56 -0700235
Roland McGrath1fa6bf42010-05-06 01:14:32 -0700236libdwfl: Fixes in core-file handling, support cores from PIEs.
237 When working from build IDs, don't open a named file that mismatches.
238
Roland McGrath2b1f0952010-06-20 17:55:50 -0700239readelf: Handle DWARF 4 formats.
Roland McGrath7fac1ce2010-06-01 15:56:58 -0700240
Roland McGrathfba8ec82010-05-03 11:42:53 -0700241Version 0.147:
242
243libdw: Fixes in CFI handling, best possible handling of bogus CFA ops.
244
245libdwfl: Ignore R_*_NONE relocs, works around old (binutils) ld -r bugs.
246
Ulrich Drepperad64d8e2010-03-04 21:51:19 -0800247Version 0.146:
248
Roland McGrath8068e062010-03-10 23:49:13 -0800249libdwfl: New function dwfl_core_file_report.
250
Roland McGrath056d6932010-02-15 16:05:58 -0800251Version 0.145:
252
253Fix build with --disable-dependency-tracking.
254
255Fix build with most recent glibc headers.
256
Roland McGrath4b0ee3b2010-02-18 14:04:45 -0800257libelf: More robust to bogus section headers.
258
Roland McGrath056d6932010-02-15 16:05:58 -0800259libdw: Fix CFI decoding.
260
261libdwfl: Fix address bias returned by CFI accessors.
Roland McGrath4b0ee3b2010-02-18 14:04:45 -0800262 Fix core file module layout identification.
Roland McGrath056d6932010-02-15 16:05:58 -0800263
264readelf: Fix CFI decoding.
265
Roland McGrathec9746f2010-01-04 22:08:45 -0800266Version 0.144:
267
Roland McGrath6fd3cd12010-01-07 19:41:04 -0800268libelf: New function elf_getphdrnum.
269 Now support using more than 65536 program headers in a file.
270
Roland McGrathebc5c882010-01-05 22:53:31 -0800271libdw: New function dwarf_aggregate_size for computing (constant) type
272 sizes, including array_type cases with nontrivial calculation.
273
Roland McGrathec9746f2010-01-04 22:08:45 -0800274readelf: Don't give errors for missing info under -a.
275 Handle Linux "VMCOREINFO" notes under -n.
276
Roland McGrathde69d522009-08-07 18:26:19 -0700277Version 0.143:
278
279libdw: Various convenience functions for individual attributes now use
280 dwarf_attr_integrate to look up indirect inherited attributes.
Roland McGrath7e0aecd2009-09-17 15:02:34 -0700281 Location expression handling now supports DW_OP_implicit_value.
Roland McGrathde69d522009-08-07 18:26:19 -0700282
Roland McGrathe5a1a812009-08-26 03:05:50 -0700283libdwfl: Support automatic decompression of files in XZ format,
284 and of Linux kernel images made with bzip2 or LZMA (as well as gzip).
Roland McGrathd6ccdc12009-08-26 00:23:01 -0700285
Ulrich Drepperf1894932009-06-13 15:55:42 -0700286Version 0.142:
287
288libelf: Add elf_getshdrnum alias for elf_getshnum and elf_getshdrstrndx alias
Ulrich Drepperb4a16cf2011-10-02 08:33:19 -0400289 for elf_getshstrndx and deprecate original names. Sun screwed up
290 their implementation and asked for a solution.
Ulrich Drepperf1894932009-06-13 15:55:42 -0700291
Ulrich Drepper70c442c2009-07-08 00:53:24 -0700292libebl: Add support for STB_GNU_UNIQUE.
293
Ulrich Drepper96d950e2009-07-14 10:42:01 -0700294elflint: Add support for STB_GNU_UNIQUE.
295
Roland McGrath5dbccdb2009-06-28 14:48:02 -0700296readelf: Add -N option, speeds up DWARF printing without address->name lookups.
297
Roland McGrath409fe102009-07-23 11:32:47 -0700298libdw: Add support for decoding DWARF CFI into location description form.
299 Handle some new DWARF 3 expression operations previously omitted.
300 Basic handling of some new encodings slated for DWARF 4.
301
Roland McGrath54eb8902009-04-14 03:18:10 -0700302Version 0.141:
303
Roland McGratheb9ba472009-04-14 18:44:45 -0700304libebl: sparc backend fixes;
305 some more arm backend support
Roland McGrathd86e1832009-04-20 00:49:33 -0700306
Roland McGrath54eb8902009-04-14 03:18:10 -0700307libdwfl: fix dwfl_module_build_id for prelinked DSO case;
308 fixes in core file support;
309 dwfl_module_getsym interface improved for non-address symbols
Roland McGrathd86e1832009-04-20 00:49:33 -0700310
Roland McGrath54eb8902009-04-14 03:18:10 -0700311strip: fix infinite loop on strange inputs with -f
312
Roland McGrathd86e1832009-04-20 00:49:33 -0700313addr2line: take -j/--section=NAME option for binutils compatibility
314 (same effect as '(NAME)0x123' syntax already supported)
315
Ulrich Drepper8a3b0fa2009-02-16 11:02:37 -0800316Version 0.140:
317
318libelf: Fix regression in creation of section header
319
320libdwfl: Less strict behavior if DWARF reader ist just used to display data
321
Ulrich Drepper3bf57592009-01-01 18:52:05 -0800322Version 0.139:
323
324libcpu: Add Intel SSE4 disassembler support
325
Ulrich Drepper05d2b202009-01-16 17:58:54 -0800326readelf: Implement call frame information and exception handling dumping.
Ulrich Drepperb4a16cf2011-10-02 08:33:19 -0400327 Add -e option. Enable it implicitly for -a.
Ulrich Drepperac194d02009-01-06 00:30:01 -0800328
Ulrich Drepper3a52c7a2009-01-16 21:11:49 -0800329elflint: Check PT_GNU_EH_FRAME program header entry.
330
Roland McGrathd666b002009-01-06 02:14:26 -0800331libdwfl: Support automatic gzip/bzip2 decompression of ELF files.
332
Roland McGrathd8ca9bd2008-12-24 01:09:18 -0800333Version 0.138:
334
335Install <elfutils/version.h> header file for applications to use in source
336version compatibility checks.
337
338libebl: backend fixes for i386 TLS relocs; backend support for NT_386_IOPERM
339
340libcpu: disassembler fixes
341
342libdwfl: bug fixes
343
344libelf: bug fixes
345
346nm: bug fixes for handling corrupt input files
347
Ulrich Drepperbb48a272008-08-27 03:01:47 +0000348Version 0.137:
349
350Minor fixes for unreleased 0.136 release.
351
Roland McGrathb4d6f0f2008-08-25 22:55:17 +0000352Version 0.136:
353
354libdwfl: bug fixes; new "segment" interfaces;
355 all the libdwfl-based tools now support --core=COREFILE option
356
Roland McGrathb37d2532008-05-07 18:38:35 +0000357Version 0.135:
358
359libdwfl: bug fixes
360
361strip: changed handling of ET_REL files wrt symbol tables and relocs
362
Roland McGrath60982e62008-04-05 00:40:51 +0000363Version 0.134:
364
365elflint: backend improvements for sparc, alpha
366
367libdwfl, libelf: bug fixes
368
Roland McGrath47c5c352008-02-29 10:17:16 +0000369Version 0.133:
370
371readelf, elflint, libebl: SHT_GNU_ATTRIBUTE section handling (readelf -A)
372
373readelf: core note handling for NT_386_TLS, NT_PPC_SPE, Alpha NT_AUXV
374
375libdwfl: bug fixes and optimization in relocation handling
376
377elfcmp: bug fix for non-allocated section handling
378
Ulrich Drepper1c5928d2008-03-01 18:34:56 +0000379ld: implement newer features of binutils linker.
380
Ulrich Drepper28a0c612008-01-21 18:57:48 +0000381Version 0.132:
382
383libcpu: Implement x86 and x86-64 disassembler.
384libasm: Add interface for disassembler.
385
386all programs: add debugging of branch prediction.
387
388libelf: new function elf_scnshndx.
389
Roland McGrath478a9602007-11-08 00:59:30 +0000390Version 0.131:
391
392libdw: DW_FORM_ref_addr support; dwarf_formref entry point now deprecated;
393 bug fixes for oddly-formatted DWARF
394
395libdwfl: bug fixes in offline archive support, symbol table handling;
396 apply partial relocations for dwfl_module_address_section on ET_REL
397
398libebl: powerpc backend support for Altivec registers
399
Roland McGrathc76f0b02007-09-27 07:31:33 +0000400Version 0.130:
401
402readelf: -p option can take an argument like -x for one section,
Roland McGrath59ea7f32007-10-04 08:50:09 +0000403 or no argument (as before) for all SHF_STRINGS sections;
Ulrich Drepperb597dfa2007-10-16 05:21:27 +0000404 new option --archive-index (or -c);
405 improved -n output for core files, on many machines
Roland McGrath59ea7f32007-10-04 08:50:09 +0000406
407libelf: new function elf_getdata_rawchunk, replaces gelf_rawchunk;
408 new functions gelf_getnote, gelf_getauxv, gelf_update_auxv
409
410readelf, elflint: handle SHT_NOTE sections without requiring phdrs
411
Ulrich Drepperb597dfa2007-10-16 05:21:27 +0000412elflint: stricter checks on debug sections
413
Roland McGrath59ea7f32007-10-04 08:50:09 +0000414libdwfl: new functions dwfl_build_id_find_elf, dwfl_build_id_find_debuginfo,
415 dwfl_module_build_id, dwfl_module_report_build_id;
416 support dynamic symbol tables found via phdrs;
417 dwfl_standard_find_debuginfo now uses build IDs when available
418
419unstrip: new option --list (or -n)
Roland McGrathc76f0b02007-09-27 07:31:33 +0000420
Ulrich Drepperb597dfa2007-10-16 05:21:27 +0000421libebl: backend improvements for sparc, alpha, powerpc
422
Roland McGrath60fc84c2007-08-03 21:59:15 +0000423Version 0.129:
424
425readelf: new options --hex-dump (or -x), --strings (or -p)
426
427addr2line: new option --symbols (or -S)
428
Roland McGrath4be15242007-04-25 03:09:33 +0000429Version 0.128:
430
431new program: unstrip
432
433elfcmp: new option --hash-inexact
434
Ulrich Dreppera1090f82007-03-30 19:16:14 +0000435Version 0.127:
Ulrich Drepper6258e742007-03-13 06:22:40 +0000436
Roland McGrath43da9892007-04-16 23:13:37 +0000437libdw: new function dwarf_getsrcdirs
438
Ulrich Drepperf527aa82007-04-19 04:15:00 +0000439libdwfl: new functions dwfl_module_addrsym, dwfl_report_begin_add,
440 dwfl_module_address_section
Ulrich Drepper6258e742007-03-13 06:22:40 +0000441
Ulrich Drepperce0bdb62007-02-05 07:13:52 +0000442Version 0.126:
443
444new program: ar
445
Ulrich Drepper56bc0b82006-12-18 22:38:08 +0000446Version 0.125:
447
448elflint: Compare DT_GNU_HASH tests.
449
450move archives into -static RPMs
451
452libelf, elflint: better support for core file handling
453
Roland McGrathc373d852006-10-10 00:25:21 +0000454Version 0.124:
455
456libebl: sparc backend support for return value location
457
458libebl, libdwfl: backend register name support extended with more info
459
460libelf, libdw: bug fixes for unaligned accesses on machines that care
461
462readelf, elflint: trivial bugs fixed
463
Roland McGrath1dee3602006-08-15 01:57:03 +0000464Version 0.123:
465
466libebl: Backend build fixes, thanks to Stepan Kasal.
467
468libebl: ia64 backend support for register names, return value location
469
470libdwfl: Handle truncated linux kernel module section names.
471
472libdwfl: Look for linux kernel "vmlinux" files with ".debug" suffix.
473
474elflint: Fix checks to permit --hash-style=gnu format.
475
Ulrich Drepper28ed8952006-07-07 03:43:47 +0000476Version 0.122:
477
Ulrich Dreppercc415622006-07-12 19:42:23 +0000478libebl: add function to test for relative relocation
Ulrich Drepper28ed8952006-07-07 03:43:47 +0000479
480elflint: fix and extend DT_RELCOUNT/DT_RELACOUNT checks
481
482elflint, readelf: add support for DT_GNU_HASH
483libelf: add elf_gnu_hash
484
485elflint, readelf: add support for 64-bit SysV-style hash tables
486
Ulrich Dreppercc415622006-07-12 19:42:23 +0000487libdwfl: new functions dwfl_module_getsymtab, dwfl_module_getsym.
488
Ulrich Drepperd9a87122006-05-28 08:00:33 +0000489Version 0.121:
490
491libelf: bug fixes for rewriting existing files when using mmap.
492
493make all installed headers usable in C++ code.
494
495readelf: better output format.
496
Ulrich Drepper6ca46002006-06-12 22:40:23 +0000497elflint: fix tests of dynamic section content.
498
499ld: Implement --as-needed, --execstack, PT_GNU_STACK. Many small patches.
500
Ulrich Drepperd9a87122006-05-28 08:00:33 +0000501libdw, libdwfl: handle files without aranges info.
502
Ulrich Drepper361df7d2006-04-04 21:38:57 +0000503Version 0.120:
504
505Bug fixes.
506
507dwarf.h updated for DWARF 3.0 final specification.
508
509libdwfl: New function dwfl_version.
510
Ulrich Drepper82c345d2006-04-04 22:07:54 +0000511The license is now GPL for most files. The libelf, libebl, libdw,
512and libdwfl libraries have additional exceptions. Add reference to
513OIN.
514
tailor808b4122006-01-13 18:50:48 +0000515Version 0.119:
516
517bug fixes
518
Ulrich Drepper607e0542005-12-04 15:51:06 +0000519Version 0.118:
520
521elflint: more tests.
522
Roland McGrath994b4892005-12-05 22:46:21 +0000523libdwfl: New function dwfl_module_register_names.
524
525libebl: New backend hook for register names.
526
Roland McGrath37ecca72005-11-18 01:42:03 +0000527Version 0.117:
528
529libdwfl: New function dwfl_module_return_value_location.
530
531libebl: Backend improvements for several CPUs.
532
Roland McGrath07d4f2f2005-10-28 06:56:24 +0000533Version 0.116:
534
535libdw: New functions dwarf_ranges, dwarf_entrypc, dwarf_diecu,
Roland McGrath6724c902005-10-28 07:07:19 +0000536 dwarf_entry_breakpoints. Removed Dwarf_Func type and functions
537 dwarf_func_name, dwarf_func_lowpc, dwarf_func_highpc,
538 dwarf_func_entrypc, dwarf_func_die; dwarf_getfuncs callback now uses
539 Dwarf_Die, and dwarf_func_file, dwarf_func_line, dwarf_func_col
540 replaced by dwarf_decl_file, dwarf_decl_line, dwarf_decl_column;
541 dwarf_func_inline, dwarf_func_inline_instances now take Dwarf_Die.
542 Type Dwarf_Loc renamed to Dwarf_Op; dwarf_getloclist,
543 dwarf_addrloclists renamed dwarf_getlocation, dwarf_getlocation_addr.
Roland McGrath07d4f2f2005-10-28 06:56:24 +0000544
Roland McGrathc94e47d2005-08-27 10:37:20 +0000545Version 0.115:
546
Ulrich Drepperfbe998a2005-08-29 16:27:10 +0000547libelf: speed-ups of non-mmap reading.
548
549strings: New program.
550
551Implement --enable-gcov option for configure.
552
Roland McGrathc94e47d2005-08-27 10:37:20 +0000553libdw: New function dwarf_getscopes_die.
554
Ulrich Drepper5d832292005-08-15 21:36:27 +0000555Version 0.114:
556
557libelf: new function elf_getaroff
558
Roland McGratha5c26432005-08-18 23:41:56 +0000559libdw: Added dwarf_func_die, dwarf_func_inline, dwarf_func_inline_instances.
560
Roland McGrath7c777292005-08-24 18:53:53 +0000561libdwfl: New functions dwfl_report_offline, dwfl_offline_section_address,
562 dwfl_linux_kernel_report_offline.
563
Ulrich Drepper5d832292005-08-15 21:36:27 +0000564ranlib: new program
565
Ulrich Drepper637963b2005-08-07 05:33:07 +0000566Version 0.113:
567
568elflint: relax a bit. Allow version definitions for defined symbols against
569DSO versions also for symbols in nobits sections. Allow .rodata section
570to have STRINGS and MERGE flag set.
571
Roland McGrath1c83bf12005-08-11 07:03:55 +0000572strip: add some more compatibility with binutils.
573
Ulrich Drepperc911c9e2005-08-02 16:07:42 +0000574Version 0.112:
575
576elfcmp: some more relaxation.
577
Ulrich Drepperdbace232005-08-06 01:37:23 +0000578elflint: many more tests, especially regarding to symbol versioning.
Ulrich Drepper41de4882005-08-03 00:02:56 +0000579
580libelf: Add elfXX_offscn and gelf_offscn.
581
Ulrich Dreppera38998e2005-08-03 02:05:39 +0000582libasm: asm_begin interface changes.
583
584libebl: Add three new interfaces to directly access machine, class, and
585data encoding information.
586
Ulrich Drepper8a687742005-08-03 02:24:12 +0000587objdump: New program. Just the beginning.
588
Ulrich Drepper70189152005-07-28 21:31:36 +0000589Version 0.111:
590
591libdw: now contains all of libdwfl. The latter is not installed anymore.
592
593elfcmp: little usability tweak, name and index of differing section is printed.
594
Ulrich Drepperb08d5a82005-07-26 05:00:05 +0000595Version 0.110:
596
Roland McGrath1c83bf12005-08-11 07:03:55 +0000597libelf: fix a number of problems with elf_update
Ulrich Drepperb08d5a82005-07-26 05:00:05 +0000598
599elfcmp: fix a few bugs. Compare gaps.
600
601Fix a few PLT problems and mudflap build issues.
602
603libebl: Don't expose Ebl structure definition in libebl.h. It's now private.
604
605Version 0.109:
606
607libebl: Check for matching modules.
608
609elflint: Check that copy relocations only happen for OBJECT or NOTYPE symbols.
610
611elfcmp: New program.
612
613libdwfl: New library.
614
615Version 0.108:
616
617strip: fix bug introduced in last change
618
619libdw: records returned by dwarf_getsrclines are now sorted by address
620
621Version 0.107:
622
623readelf: improve DWARF output format
624
625strip: support Linux kernel modules
626
627Version 0.106:
628
629libdw: Updated dwarf.h from DWARF3 spec
630libdw: add new funtions dwarf_func_entrypc, dwarf_func_file, dwarf_func_line,
631dwarf_func_col, dwarf_getsrc_file
632
633Version 0.105:
634
635addr2line: New program
636
637libdw: add new functions: dwarf_addrdie, dwarf_macro_*, dwarf_getfuncs,
638dwarf_func_*.
639
640findtextrel: use dwarf_addrdie
641
642Version 0.104:
643
644findtextrel: New program.
645
646Version 0.103:
647
648libdw: Fix using libdw.h with gcc < 4 and C++ code. Compiler bug.
649
650Version 0.102:
651
652More Makefile and spec file cleanups.
653
654Version 0.101:
655
656Remove most gettext autoconf handling.
657
658Add more warnings
659
660Fix resulting problems. One actual bug found and fixed this way
661
662Version 0.100:
663
664libebl: Fix x86-64 relocations.
665
666Add -Wunused -Wextra warnings.
667
668Some cleanups resulting from those additional warnings.
669
670Lots of Makefile cleanup.
671
672Version 0.99:
673
674libelf: add gelf_checksum prototype to <libelf.h>
675
676libelf: fix elf*_checksum handling of NOBITS sections
677
678Finish mudflap support.
679
680Fix three bugs found by mudflap.
681
682ld: add as_needed support
683
684Version 0.98:
685
686readelf: in section to segment mapping, indicate read-only sections.
687
688elflint: more relaxation for GNU ld
689
690Version 0.97:
691
692Fix compiling with gcc 4.0.
693Some tests called elflint without appropriate LD_LIBRARY_PATH.
694
695Version 0.96:
696
697Fix support for platforms with lib64.
698
699Version 0.95:
700
701libebl: add ppc and ppc64 support
702
703readelf: fix minimal memory leak.
704
705Add support to compile with mudflap.
706
707Modernize configure.ac. Move scripts in config subdir.
708
709Modernize *-po directory infrastructure.
710
711libelf: Add gelf_getlib and gelf_update_lib
712
713readelf: print liblist sections
714
715Version 0.94:
716
717Fix some minimal build problems.
718
719Version 0.93:
720
721ibdw: tons of new functionality and bug fixes. Several interface changes.
722
723readelf: use libdw now.
724
725libdwarf: removed completely.
726
727Version 0.92:
728
729configuration changes.
730
731Version 0.91:
732
733libdw: fix memory handling. Implement source line handling.
734nm: use libdw instead of libdwarf.
735libelf: change to GPL from OSL1 for now.
736
737Version 0.90:
738
739libebl: Recognize a few more section types and dynamic tags and return
740approriate strings.
741
742Version 0.89:
743
744strip: fix overwriting of symbol table in input file.
745
746Version 0.88:
747
748libebl: Add some ia64 bits.
749
750Version 0.87:
751
752Bug fixes for big endian and some 64-bit machines.
753
754Version 0.86:
755
756strip: fix handling of Alpha and s390x which use incorrect hash bucket sizes.
757
758ld: tons of changes, moving towards usability.
759
760Version 0.85:
761
762strip: update section group symbol index if the associated symbol table changed
763
764libelf: fix two problems with generating output not via mmap
765
766elflint: add probably 10-15 more tests
767libebl: add support for some of the new tests
768
769ld: gazillion changes
770
771Version 0.84:
772
773elflint: deal with .rel.dyn section. Fix a problem with rela platforms.
774Handle PT_GNU_STACK. Change to write messages to stdout.
775
776readelf: fix a problem with version information in the symbol table output.
777
778strip: update all version symbol table entries
779
780Version 0.83:
781
782size: fix a warning
783
784strip: last changed caused problems when the symbol table is before the
785relocation section. Fixed. This fix also improved the asymptotic
786behavior if many symbol table sections are present.
787
788Version 0.82:
789
790Run strip tests with the correct libelf and libebl.
791
792libelf: fix bug in verneed byte order changing code.
793
794Version 0.81:
795
796strip: Remove unused symbol table entries. This might require updating
797various other sections.
798
799Version 0.80:
800
801Fix some libelf problems with ET_REL files.
802
803Version 0.79:
804
805More warning changes, mainly by jbj.
806
807libdw: yet more new code. dwarf_child and dwarf_sibling should now actually
808work.
809
810Version 0.78:
811
812libdw: 10+ new functions. get-pubnames2 works now fully. Almost all the
813code needed for nm is in place.
814
815Version 0.77:
816
817cleanups to compile cleanly with gcc 3.3 and -Werror.
818
819libdw: some new code.
820
821Version 0.76:
822
823libebl: Fix last patch to recognize relocation sections. We must not
824use the name.
825
826Version 0.75:
827
828libebl: .debug_ranges is a DWARF 3 debug section
829libebl: recognize relocation sections for debug section
830Patches by Jakub Jelinek.
831
832Version 0.74:
833
834Cleanups and more SPARC support by Tom Callaway <tcallaway@redhat.com>.
835
836Version 0.73:
837
83864-bit cleanups for the programs.
839
840Version 0.72:
841
842libelf: and yet more fun with endian tranformation at output time.
843
844Version 0.71:
845
846libelf: more fun with endian tranformation at output time. Add test for it.
847
848Version 0.70:
849
850libelf: Two little bugs left from previous patch to handle section output
851order.
852
853libelf: add unlikely in some more places.
854
855Version 0.69:
856
857libelf: fix output routines to handle case where section indeces and
858ordre in the output file don't match correctly. Patch by Jakub.
859
860elflint: fix test of note section content for 64-bit platforms and files
861with different byte order.
862
863Version 0.68:
864
865libebl: Fix SH_ENTSIZE_HASH definition (patch by Jakub)
866
867Version 0.67:
868
869libelf: correct mistake in error string handling.
870
871libelf: Implement ELF_F_PERMISSIVE.
872strip: Implement --permissive option.
873
874Version 0.66:
875
876strip: Implement -g option.
877
878libelf: Handle broken hash table entry sizes.
879
880libebl: New function ebl_debugscn_p. Use it where appropriate.
881
882Version 0.65:
883
884libelf: Use correct file size for NOBITS section with ELF_F_LAYOUT set
885
886Version 0.64:
887
888libelf: Make error handling more robust.
889libelf: Use TLS in error handler if configured with --enable-tls
890
891tests: input files are now distributed, not uuencoded in the shell scripts
892
893libdw: implement error handling, dwarf_get_pubnames
894
895Version 0.63:
896
897Build (incomplete) libdw.
898
899Version 0.62:
900
901Get rid of libtool.
902
903Version 0.61:
904
905Fix URL of OSL.
906
907Version 0.60:
908
909libebl: Handle .gnu.warning.* sections correctly.
910
911size: Implement -t option.
912
913libebl: Add IA-64 support.
914libebl: Update SH relocations.
915libebl: Add Alpha support.
916libebl: Add Arm support.
917libebl: Add support for all currently known architecture to the loader.
918
919Version 0.59:
920
921nm: Implement -S option. Correct portable output format. Implement -s option.
922
923libelf: Take offset of archive into account in elf_rand.
924
925Version 0.58:
926
927strip: fix handling of ET_REL files.
928Add tests for strip.
929
930Version 0.57:
931
932strip: respect layout of input file
933
934Version 0.56:
935
936strip: handle files with large number of sections.
937
938Version 0.55:
939
940libelf: quite a few bug fixes by Alex Larsson.
941
942strip: implement -f option to place stripped sections into a separate
943file. By Alex Larsson.
944
945Version 0.54:
946
947strip: don't let STT_SECTION symbols keeps sections from being removed
948
949elflint: local symbols are allowed in .dynsym
950elflint: special case .rel.dyn a bit
951
952Version 0.53:
953
954elflint: check types and flags of special sections defined in gABI
955
956libebl: add x86-64 support
957
958Version 0.52:
959
960Start improvement of debug info handling in nm.
961
962libasm: implement asm_adduleb128 and asm_addsleb128 and a test for them
963
964Version 0.51:
965
966Fix build on 64-bit platforms.
967
968Version 0.50:
969
970nm: print file/line number also for local symbols
971
972use versions scripts not libtool's useless -export-symbols option
973
974Version 0.49:
975
976Update to autoconf 2.54 and automake 1.7.
977
978elflint: check note sections
979
980libdwarf: a number of bug fixes
981
982readelf: print .debug_info section content
983
984dwarf.h: Update from draft 7
985
986Version 0.48:
987
988libcpu: beginning
989
990libelf: new function to read parts of the ELF file
991
992libebl: support for note section handling
993
994readelf: dump note sections
995
996Version 0.47:
997
998libelf: fix little new section-handling related bugs in elf_getshstrndx
999and elf_nextscn
1000
1001elflint: tests for mandatory content of dynamic section
1002
1003libasm: better handling of absolute symbols
1004
1005Version 0.46:
1006
1007libasm: rewrite to store Elf_Scn* instead of indices
1008
1009nm: finish many-section support
1010
1011nm: use debug in to print file/line info in sysv format
1012
1013libdwarf: fix a few bugs in DIE handling
1014
1015Version 0.45:
1016
1017libelf: major rewrite to keep Elf_Scn references valid until elf_end
1018
1019Version 0.44:
1020
1021libasm: Add support for bss, ABS, and COM sections.
1022
1023libebl: ebl_section_name takes now two index arguments to distinguish
1024between special sections and extended sections
1025
1026Version 0.43:
1027
1028General: fix a few problem gcc 3.1 had with the code.
1029
1030libelf: implement {gelf,elf32,elf64}_checksum
1031
1032libelf: optimze DSO: fewer relocations, fewer PLTs
1033
1034add msg_tst test
1035
1036ld: use correct section header string table index; write correct index
1037
1038add dependencies for *.sym files
1039
1040Version 0.42:
1041
1042libelf: add elf_getshnum and elf_getshstrndx
1043
1044libebl: update section type name function
1045
1046elflint: tons of fixes wrt large number of sections. New tests in this area.
1047Same amount of other bug fixes.
1048
1049size, strip, nm: better support for large number of sections. Including
1050using correct section header string table
1051
1052libasm: correctly create data structures for large number of sections
1053
1054new tests asm-tst4 and asm-tst5 to check large number of sections
1055
1056libasm: implement section group generation
1057
1058elflint: more tests on section groups. Improve performance on existing
1059section group tests
1060
1061Version 0.41:
1062
1063ld: add undefined symbols to dynamic symbol table if --export-dynamic is
1064not given
1065
1066ld: fix value of e_entry
1067
1068Version 0.40:
1069
1070elflint: print section names in error messages
1071
1072elflint: mustn't warn about multiple DT_NULL
1073
1074ld: don't emit all symbols if --export-dynamic is not given
1075
1076ld: correct compute symbol address in output file (section index was off by 1)
1077
1078ld: generate correct version info in dynsym without --export-dynamic and
1079in symtab
1080
1081Version 0.39:
1082
1083Fix check of various e_*size entries in elflint.
1084
1085Handle text output in asm_newsym.
1086
1087Finish checks in asm-tst3.
1088
1089Version 0.38:
1090
1091Update to autoconf 2.53, automake 1.6, gettext 0.11+.
1092
1093Introduce *.sym files to restrict export from DSOs.
1094
1095Use attribute_hidden and internal_function to optimize DSO code.
1096
1097Add TLS definitions in elf.h and handle them in readelf.
1098
1099Fix bug in verdef section generation in ld.
1100
1101Add initial libasm code.
1102
1103Version 0.37:
1104
1105Implement better hash size optimization heuristic in ld. It uses a formula
1106taking number of tests into account.
1107
1108Lots of small bug fixes.
1109
1110Improve readelf output format. Respect various sh_link/sh_info values.
1111Correctly print versioning information for symbol tables.
1112
1113Version 0.36:
1114
1115Implement preprocessing of linker script. Recognize -z combreloc.
1116
1117Version 0.35:
1118
1119Implement -z ignore|record for ld.
1120
1121Implement creating of .gnu.version_r and .gnu.version sections. The
1122.gnu.version does not yet contain correct info for defined and versioned
1123symbols (means .gnu.version_d is not yet implemented).
1124
1125Implement gelf_update_* functions to create versioning data.
1126
1127Version 0.34:
1128
1129Add DT_RUNPATH/DT_RPATH entries to dynamic section. Create .plt and
1130.rel.plt sections (completely). Add support for all four PLT related
1131dynamic section entries. Add callback function for PLT creation.
1132
1133More tests in elflint. Add support for very strict checking which for
1134now flags level 2 (deprecated features) usage.
1135
1136Version 0.33:
1137
1138Create dynamic symbol table, dynamic string table, and hash table to ld.
1139
1140Add hash table histogram support to readelf.
1141
1142Version 0.32:
1143
1144more work on elflint
1145
1146ld now creates the dynamic section and references it. Start adding entries
1147to dynamic section.
1148
1149Version 0.31:
1150
1151Start implementing elflint.
1152
1153Version 0.30:
1154
1155Fix handling of NOBITS sections in elf_getdata.
1156
1157Start implementing generation of executables and DSOs in ld.
1158Generation of program header mostly done. Address computation done.
1159Extension of linker script syntax.
1160
1161Various cleanups.
1162
1163Implement section group handling in readelf.
1164
1165Version 0.29:
1166
1167Implement section groups. This involved a lot of code moving. The
1168new code is entirely untested since gas/gcc are currently not able to
1169create section groups. ld works fine on files without section groups.
1170
1171Version 0.28:
1172
1173Fix problem with adding more section in elf_newscn. The section pointers
1174for the data buffers wasn't adjusted.
1175
1176Fix elf_getdata with nonzero second parameter. Correctly handle creation
1177of internal data buffer for machines without unaligned access.
1178
1179Version 0.27:
1180
1181Start adding support to selectively add sections. Includes support for
1182section groups.
1183Add --gc-sections/--no-gc-sections options.
1184Add general section merging support.
1185
1186Fix a bug in section group support in strip.
1187
1188Fix some potential problems with hash value in dynamic hash implementation.
1189
1190Version 0.26:
1191
1192section merging works in ld.
1193
1194Version 0.25:
1195
1196Actually create data structures from version map file and use it to hide
1197symbols in ld.
1198
1199Implement -s -s for ld.
1200
1201Version 0.24:
1202
1203Improve relocation table output in readelf. Avoid some crashes.
1204Finish many section handling in readelf.
1205
1206Finish: finish implementation of ld -r. At least some simple tests pass.
1207
1208Version 0.23:
1209
1210Fix a number of errors in ELF_C_WRITE handling.
1211
1212Almost finished implementation of ld -r. The data sections are all copied.
1213Handling of symbol tables is missing.
1214
1215Version 0.22:
1216
1217Handle DSO and archive input files correctly if -r option is given.
1218
1219Gracefully deal with no phdr in new file in libelf.
1220Fix various small error handling problems.
1221Don't mmap file for output unless the command says so.
1222
1223Add code to create ELF section header table to ld finalize routines.
1224
1225Version 0.21:
1226
1227Fix some problems with recursive handling of archives in libelf.
1228
1229Improve messages printed by nm.
1230
1231Add symbol binding name handling to libebl. Fix section name handling in
1232libebl.
1233
1234readelf and nm use more libebl functions.
1235
1236Handle XINDEX correctly in nm and string.
1237
1238Add first machine ld backend library (i386).
1239Use it. Recognize -r and --shared. Avoid using -lxxx parameters for -r.
1240Create ELF header in output file. Change mode of output file according to
1241output file type. Reorganize callback initialization in ld.
1242
1243Version 0.20:
1244
1245Fix some memory leaks in libelf.
1246
1247Version 0.19:
1248
1249Implement reading version script. Both inside linker scripts and via the
1250--version-script command line parameter. Uses the same code.
1251What remains to be done is to implement a data structure which allows
1252efficient matching against the version names to decide which pattern
1253matches.
1254
1255Beginning of output generation and output writing functions.
1256
1257Version 0.18:
1258
1259Finish implementation for DSO input file handling. Implement rpath, runpath,
1260and LD_LIBRARY_PATH handling.
1261
1262Version 0.17:
1263
1264make handling of e_shnum overflow in libelf standard conforming
1265
1266ld now actually can handle DSOs in linker scripts. Handling of DT_RUNPATH,
1267DT_RPATH, -rpath, -rpath-link still remains to be implemented.
1268
1269fix handling of -L parameters. Make actual use of the default_paths element.
1270
1271make re-definition of symbols in and from DSO compatible with existing linker
1272
1273Version 0.16:
1274
1275more work on assigning input sections to output sections.
1276
1277Add gelf_xlatetof and gelf_xlatetom which were accidently left out.
1278
1279Fix memory handling of section headers.
1280
1281Version 0.15:
1282
1283Add many-section support to ld. Add various new command line parameters.
1284Allow pagesize to be specified in linker script or on the command line.
1285Collect input sections in list for the output section according to the rules
1286specified in the linker script.
1287
1288Version 0.14:
1289
1290Fix some problems in the internal list handling which had the result
1291that we didn't look for some of the unresolved symbols.
1292
1293Free some memory if we know we don't need it anymore.
1294
1295Optimize the list of unresolved symbols. Throw out symbols which are
1296meanwhile resolved.
1297
1298Version 0.13:
1299
1300Got file reading correct now. The files are all read while parsing
1301the parameters. No creating of data structures to describe the linker
1302command line. The symbol table is built up while reading the files.
1303DSOs are handled now. -( -) handling is optimized.
1304
1305Version 0.12:
1306
1307Linker read linker scripts everywhere. Handles --whole-archive. Recognizes
1308--dynamic and --static. Collects defined and undefined symbols. Recognizes
1309conflicts.
1310
1311libebl now defines functions to call the callbacks. Add generic name handling
1312in these new functions. Remove the code from readelf and call the new
1313functions.
1314
1315Version 0.11:
1316
1317Start of linker. Basic argument parsing, finding of input files,
1318linker script reading.
1319
1320Version 0.10:
1321
1322Implement dwarf_get_fde_n(), dwarf_get_abbrev(), dwarf_get_abbrev_tag(),
1323dwarf_get_abbrev_code(), dwarf_get_abbrev_children_flag(),
1324dwarf_get_abbrev_entry(), dwarf_get_fde_at_pc(), and tests for it.
1325
1326Version 0.9:
1327
1328Implement dwarf_get_fde_list_eh(), dwarf_get_cie_of_fde(),
1329dwarf_get_fde_range(), dwarf_get_cie_info(), dwarf_get_fde_instr_bytes(),
1330and tests for them.
1331
1332Version 0.8:
1333
1334Make handling of binaries in other byte order work and add tests for it.
1335
1336Version 0.7:
1337
1338Implement dwarf_get_aranges(), dwarf_get_arange(), dwarf_get_cu_die_offset(),
1339dwarf_get_arange_info(), and tests for them.
1340
1341Version 0.6:
1342
1343Implement dwarf_get_global(), dwarf_globname(), dwarf_global_die_offset(),
1344dwarf_global_cu_offset(), dwarf_global_name_offsets(), and tests for them
1345
1346Version 0.5:
1347
1348Implemented dwarf_srclines(), dwarf_srcfiles(), dwarf_linebeginstatement(),
1349dwarf_lineendsequence(), dwarf_lineno(), dwarf_lineaddr(), dwarf_lineoff(),
1350dwarf_linesrc(), dwarf_lineblock(), dwarf_lineprologueend(),
1351dwarf_lineepiloguebegin(), and tests for them.
1352
1353Version 0.4:
1354
1355Implemented dwarf_loclist().
1356
1357Version 0.3:
1358
1359Implemented dwarf_dieoffset(), dwarf_die_CU_offset(), dwarf_diename() and
1360tests.
1361
1362Implemented dwarf_attrlist(), dwarf_hasattr(), dwarf_attr(), dwarf_lowpc(),
1363dwarf_highpc(), dwarf_bytesize(), dwarf_bitsize(), dwarf_bitoffset(),
1364dwarf_srclang(), dwarf_arrayorder(), dwarf_hasform(), dwarf_whatform(),
1365dwarf_whatattr(), dwarf_formref(), dwarf_global_formref(), dwarf_formaddr(),
1366dwarf_formflag(), dwarf_formudata(), dwarf_formsdata(), dwarf_formblock,
1367dwarf_formstring() and tests for them.
1368
1369Version 0.2:
1370
1371Implemented dwarf_offdie()), dwarf_tag(), dwarf_dieoffset(),
1372dwarf_die_CU_offset(), dwarf_diename() and tests for them.
1373
1374Version 0.1:
1375
1376First libdwarf functions work.
1377
1378Version 0.0:
1379
1380libelf and parts of libebl are done.