• Home
  • History
  • Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 Version 0.176
2 
3 build: Add new --enable-install-elfh option.
4        Do NOT use this for system installs (it overrides glibc elf.h).
5 
6 backends: riscv improved core file and return value location support.
7 
8 Fixes CVE-2019-7146, CVE-2019-7148, CVE-2019-7149, CVE-2019-7150,
9       CVE-2019-7664, CVE-2019-7665
10 
11 Version 0.175
12 
13 readelf: Handle mutliple .debug_macro sections.
14          Recognize and parse GNU Property notes, NT_VERSION notes
15          and GNU Build Attribute ELF Notes.
16 
17 strip: Handle SHT_GROUP correctly.
18        Add strip --reloc-debug-sections-only option.
19        Handle relocations against GNU compressed sections.
20 
21 libdwelf: New function dwelf_elf_begin.
22 
23 libcpu: Recognize bpf jump variants BPF_JLT, BPF_JLE, BPF_JSLT and BPF_JSLE.
24 
25 backends: RISCV handles ADD/SUB relocations. Handle SHT_X86_64_UNWIND.
26 
27 Fixes CVE-2018-18310, CVE-2018-18520 and CVE-2018-18521.
28 
29 Version 0.174
30 
31 libelf, libdw and all tools now handle extended shnum and shstrndx correctly.
32 
33 elfcompress: Don't rewrite input file if no section data needs updating.
34              Try harder to keep same file mode bits (suid) on rewrite.
35 
36 strip: Handle mixed (out of order) allocated/non-allocated sections.
37 
38 unstrip: Handle SHT_GROUP sections.
39 
40 backends: RISCV and M68K now have backend implementations to generate CFI based
41           backtraces.
42 
43 Fixes CVE-2018-16062, CVE-2018-16402 and CVE-2018-16403.
44 
45 Version 0.173
46 
47 More fixes for crashes and hangs found by afl-fuzz. In particular various
48 functions now detect and break infinite loops caused by bad DIE tree cycles.
49 
50 readelf: Will now lookup the size and signedness of constant value types
51          to display them correctly (and not just how they were encoded).
52 
53 libdw: New function dwarf_next_lines to read CU-less .debug_line data.
54        dwarf_begin_elf now accepts ELF files containing just .debug_line
55        or .debug_frame sections (which can be read without needing a DIE
56        tree from the .debug_info section).
57        Removed dwarf_getscn_info, which was never implemented.
58 
59 backends: Handle BPF simple relocations.
60           The RISCV backends now handles ABI specific CFI and knows about
61           RISCV register types and names.
62 
63 Version 0.172
64 
65 No functional changes compared to 0.171.
66 
67 Various bug fixes in libdw and eu-readelf dealing with bad DWARF5 data.
68 Thanks to running the afl fuzzer on eu-readelf and various testcases.
69 
70 eu-readelf -N is ~15% faster.
71 
72 Version 0.171
73 
74 DWARF5 and split dwarf, including GNU DebugFission, are supported now.
75 Data can be read from the new DWARF sections .debug_addr, .debug_line_str,
76 .debug_loclists, .debug_str_offsets and .debug_rnglists.  Plus the new
77 DWARF5 and GNU DebugFission encodings of the existing .debug sections.
78 Also in split DWARF .dwo (DWARF object) files.  This support is mostly
79 handled by existing functions (dwarf_getlocation*, dwarf_getsrclines,
80 dwarf_ranges, dwarf_form*, etc.) now returning the data from the new
81 sections and data formats.  But some new functions have been added
82 to more easily get information about skeleton and split compile units
83 (dwarf_get_units and dwarf_cu_info), handle new attribute data
84 (dwarf_getabbrevattr_data) and to keep references to Dwarf_Dies
85 that might come from different sections or files (dwarf_die_addr_die).
86 
87 Not yet supported are .dwp (Dwarf Package) and .sup (Dwarf Supplementary)
88 files, the .debug_names index, the .debug_cu_index and .debug_tu_index
89 sections. Only a single .debug_info (and .debug_types) section are
90 currently handled.
91 
92 readelf: Handle all new DWARF5 sections.
93          --debug-dump=info+ will show split unit DIEs when found.
94          --dwarf-skeleton can be used when inspecting a .dwo file.
95 	 Recognizes GNU locviews with --debug-dump=loc.
96 
97 libdw: New functions dwarf_die_addr_die, dwarf_get_units,
98        dwarf_getabbrevattr_data and dwarf_cu_info.
99        libdw will now try to resolve the alt file on first use of
100        an alt attribute FORM when not set yet with dwarf_set_alt.
101        dwarf_aggregate_size() now works with multi-dimensional arrays.
102 
103 libdwfl: Use process_vm_readv when available instead of ptrace.
104 
105 backends: Add a RISC-V backend.
106 
107 There were various improvements to build on Windows.
108 The sha1 and md5 implementations have been removed, they weren't used.
109 
110 Version 0.170
111 
112 libdw: Added new DWARF5 attribute, tag, character encoding, language code,
113        calling convention, defaulted member function and macro constants
114        to dwarf.h.
115        New functions dwarf_default_lower_bound and dwarf_line_file.
116        dwarf_peel_type now handles DWARF5 immutable, packed and shared tags.
117        dwarf_getmacros now handles DWARF5 .debug_macro sections.
118 
119 strip: Add -R, --remove-section=SECTION and --keep-section=SECTION.
120 
121 backends: The bpf disassembler is now always build on all platforms.
122 
123 Version 0.169
124 
125 backends: Add support for EM_PPC64 GNU_ATTRIBUTES.
126           Frame pointer unwinding fallback support for i386, x86_64, aarch64.
127 
128 translations: Update Polish translation.
129 
130 Version 0.168
131 
132 http://elfutils.org/ is now hosted at http://sourceware.org/elfutils/
133 
134 libelf: gelf_newehdr and gelf_newehdr now return void *.
135 
136 libdw: dwarf.h corrected the DW_LANG_PLI constant name (was DW_LANG_PL1).
137 
138 readelf: Add optional --symbols[=SECTION] argument to select section name.
139 
140 Version 0.167
141 
142 libasm: Add eBPF disassembler for EM_BPF files.
143 
144 backends: Add m68k and BPF backends.
145 
146 ld: Removed.
147 
148 dwelf: Add ELF/DWARF string table creation functions. dwelf_strtab_init,
149        dwelf_strtab_add, dwelf_strtab_add_len, dwelf_strtab_finalize,
150        dwelf_strent_off, dwelf_strent_str and dwelf_strtab_free.
151 
152 Version 0.166
153 
154 config: The default program prefix for the installed tools is now eu-.
155         Use configure --program-prefix="" to not use a program prefix.
156 
157 Version 0.165
158 
159 elfcompress: New utility to compress or decompress ELF sections.
160 
161 readelf: Add -z,--decompress option.
162 
163 libelf: Add elf_compress, elf_compress_gnu, elf32_getchdr, elf64_getchdr
164         and gelf_getchdr.
165 
166 libdwelf: New function dwelf_scn_gnu_compressed_size.
167 
168 config: Add libelf and libdw pkg-config files.
169 
170 backends: sparc support for core and live backtraces.
171 
172 translations: Updated Polish translation.
173 
174 Version 0.164
175 
176 strip, unstrip: Handle ELF files with merged strtab/shstrtab tables.
177                 Handle missing SHF_INFO_LINK section flags.
178 
179 libelf: Use int64_t for offsets in libelf.h instead of loff_t.
180 
181 libdw: dwarf.h Add preliminary DWARF5 DW_LANG_Haskell.
182 
183 libdwfl: dwfl_standard_find_debuginfo now searches any subdir of the binary
184          path under the debuginfo root when the separate debug file couldn't
185          be found by build-id.
186          dwfl_linux_proc_attach can now be called before any Dwfl_Modules
187          have been reported.
188 
189 backends: Better sparc and sparc64 support.
190 
191 translations: Updated Ukrainian translation.
192 
193 Provide default-yama-scope subpackage.
194 
195 Version 0.163
196 
197 Bug fixes only, no new features.
198 
199 Version 0.162
200 
201 libdw: Install new header elfutils/known-dwarf.h.
202        dwarf.h Add preliminary DWARF5 constants DW_TAG_atomic_type,
203        DW_LANG_Fortran03, DW_LANG_Fortran08. dwarf_peel_type now also
204        handles DW_TAG_atomic_type.
205 
206 addr2line: Input addresses are now always interpreted as hexadecimal
207            numbers, never as octal or decimal numbers.
208            New option -a, --addresses to print address before each entry.
209            New option -C, --demangle to show demangled symbols.
210            New option --pretty-print to print all information on one line.
211 
212 ar: CVE-2014-9447 Directory traversal vulnerability in ar extraction.
213 
214 backends: x32 support.
215 
216 Version 0.161
217 
218 libdw: New function dwarf_peel_type. dwarf_aggregate_size now uses
219        dwarf_peel_type to also provide the sizes of qualified types.
220        dwarf_getmacros will now serve either of .debug_macro and
221        .debug_macinfo transparently.  New interfaces
222        dwarf_getmacros_off, dwarf_macro_getsrcfiles,
223        dwarf_macro_getparamcnt, and dwarf_macro_param are available
224        for more generalized inspection of macros and their parameters.
225        dwarf.h: Add DW_AT_GNU_deleted, DW_AT_noreturn, DW_LANG_C11,
226        DW_LANG_C_plus_plus_11 and DW_LANG_C_plus_plus_14.
227 
228 Version 0.160
229 
230 libdw: New functions dwarf_cu_getdwarf, dwarf_cu_die.
231        dwarf.h remove non-existing DW_TAG_mutable_type.
232 
233 libdwfl: Handle LZMA .ko.xz compressed kernel modules.
234 
235 unstrip: New option -F, --force to combining files even if some ELF headers
236          don't seem to match.
237 
238 backends: Handle ARM THUMB functions. Add support for ppc64le ELFv2 abi.
239 
240 Version 0.159
241 
242 stack: New option -d, --debugname to lookup DWARF debuginfo name for frame.
243        New option -i, --inlines to show inlined frames using DWARF debuginfo.
244 
245 libdwelf: New libdwelf.h header for libdw.so DWARF ELF Low-level Functions.
246           New function dwelf_elf_gnu_debuglink, dwelf_dwarf_gnu_debugaltlink,
247 	  and dwelf_elf_gnu_build_id.
248 
249 libdw: Support for DWZ multifile forms DW_FORM_GNU_ref_alt and
250        DW_FORM_GNU_strp_alt is now enabled by default and no longer
251        experimental. Added new functions dwarf_getalt and dwarf_setalt
252        to get or set the alternative debug file used for the alt FORMs.
253        The dwfl_linux_proc_find_elf callback will now find ELF from
254        process memory for (deleted) files if the Dwfl has process state
255        attached.
256 
257 libdwfl: The dwfl_build_id_find_debuginfo and dwfl_standard_find_debuginfo
258          functions will now try to resolve and set the alternative debug file.
259 
260 backends: Add CFI unwinding for arm. Relies on .debug_frame.
261           Add arm process initial register state compatible mode to AARCH64.
262           Add aarch64 native and core unwind support.
263 
264 other: All separate elfutils-robustify patches have been merged.
265        CVE-2014-0172 Check overflow before calling malloc to uncompress data.
266 
267 Version 0.158
268 
269 libdwfl: dwfl_core_file_report has new parameter executable.
270          New functions dwfl_module_getsymtab_first_global,
271          dwfl_module_getsym_info and dwfl_module_addrinfo.
272          Added unwinder with type Dwfl_Thread_Callbacks, opaque types
273          Dwfl_Thread and Dwfl_Frame and functions dwfl_attach_state,
274          dwfl_pid, dwfl_thread_dwfl, dwfl_thread_tid, dwfl_frame_thread,
275          dwfl_thread_state_registers, dwfl_thread_state_register_pc,
276          dwfl_getthread_frames, dwfl_getthreads, dwfl_thread_getframes
277          and dwfl_frame_pc.
278 
279 addr2line: New option -x to show the section an address was found in.
280 
281 stack: New utility that uses the new unwinder for processes and cores.
282 
283 backends: Unwinder support for i386, x86_64, s390, s390x, ppc and ppc64.
284           aarch64 support.
285 
286 Version 0.157
287 
288 libdw: Add new functions dwarf_getlocations, dwarf_getlocation_attr
289        and dwarf_getlocation_die.
290 
291 readelf: Show contents of NT_SIGINFO and NT_FILE core notes.
292 
293 addr2line: Support -i, --inlines output option.
294 
295 backends: abi_cfi hook for arm, ppc and s390.
296 
297 Version 0.156
298 
299 lib: New macro COMPAT_VERSION_NEWPROTO.
300 
301 libdw: Handle GNU extension opcodes in dwarf_getlocation.
302 
303 libdwfl: Fix STB_GLOBAL over STB_WEAK preference in dwfl_module_addrsym.
304          Add minisymtab support.
305          Add parameter add_p_vaddr to dwfl_report_elf.
306          Use DT_DEBUG library search first.
307 
308 libebl: Handle new core note types in EBL.
309 
310 backends: Interpret NT_ARM_VFP.
311           Implement core file registers parsing for s390/s390x.
312 
313 readelf: Add --elf-section input option to inspect an embedded ELF file.
314          Add -U, --unresolved-address-offsets output control.
315          Add --debug-dump=decodedline support.
316          Accept version 8 .gdb_index section format.
317          Adjust output formatting width.
318          When highpc is in constant form print it also as address.
319          Display raw .debug_aranges. Use libdw only for decodedaranges.
320 
321 elflint: Add __bss_start__ to the list of allowed symbols.
322 
323 tests: Add configure --enable-valgrind option to run all tests under valgrind.
324        Enable automake parallel-tests for make check.
325 
326 translations: Updated Polish translation.
327 
328 Updates for Automake 1.13.
329 
330 Version 0.155
331 
332 libelf: elf*_xlatetomd now works for cross-endian ELF note data.
333         elf_getshdr now works consistently on non-mmaped ELF files after
334         calling elf_cntl(ELF_C_FDREAD).
335         Implement support for ar archives with 64-bit symbol table.
336 
337 libdw: dwarf.h corrected the DW_LANG_ObjC constant name (was DW_LANG_Objc).
338        Any existing sources using the old name will have to be updated.
339        Add DW_MACRO_GNU .debug_macro type encodings constants, DW_ATE_UTF
340        and DW_OP_GNU_parameter_ref to dwarf.h.
341        Experimental support for DWZ multifile forms DW_FORM_GNU_ref_alt
342        and DW_FORM_GNU_strp_alt.  Disabled by default.  Use configure
343        --enable-dwz to test it.
344 
345 readelf: Add .debug_macro parsing support.
346          Add .gdb_index version 7 parsing support.
347          Recognize DW_OP_GNU_parameter_ref.
348 
349 backends: Add support for Tilera TILE-Gx processor.
350 
351 translations: Updated Ukrainian translation.
352 
353 Version 0.154
354 
355 libelf: [g]elf[32|64]_offscn() do not match SHT_NOBITS sections at OFFSET.
356 
357 libdw: dwarf_highpc function now handles DWARF 4 DW_AT_high_pc constant form.
358        Fix bug using dwarf_next_unit to iterate over .debug_types.
359 
360 elflint: Now accepts gold linker produced executables.
361 
362 The license is now GPLv2/LGPLv3+ for the libraries and GPLv3+ for stand-alone
363 programs. There is now also a formal CONTRIBUTING document describing how to
364 submit patches.
365 
366 Version 0.153
367 
368 libdw: Support reading .zdebug_* DWARF sections compressed via zlib.
369 
370 libdwfl: Speed up dwfl_module_addrsym.
371 
372 nm: Support C++ demangling.
373 
374 ar: Support D modifier for "deterministic output" with no uid/gid/mtime info.
375     The U modifier is the inverse.
376     elfutils can be configured with the --enable-deterministic-archives
377     option to make the D behavior the default when U is not specified.
378 
379 ranlib: Support -D and -U flags with same meaning.
380 
381 readelf: Improve output of -wline. Add support for printing SDT elf notes.
382          Add printing of .gdb_index section.
383 	 Support for typed DWARF stack, call_site and entry_value.
384 
385 strip: Add --reloc-debug-sections option.
386        Improved SHT_GROUP sections handling.
387 
388 Version 0.152
389 
390 Various build and warning nits fixed for newest GCC and Autoconf.
391 
392 libdwfl: Yet another prelink-related fix for another regression.
393 	 Look for Linux kernel images in files named with compression suffixes.
394 
395 elfcmp: New flag --ignore-build-id to ignore differing build ID bits.
396 	New flag -l/--verbose to print all differences.
397 
398 Version 0.151
399 
400 libdwfl: Fix for more prelink cases with separate debug file.
401 
402 strip: New flag --strip-sections to remove section headers entirely.
403 
404 Version 0.150
405 
406 libdw: Fix for handling huge .debug_aranges section.
407 
408 libdwfl: Fix for handling prelinked DSO with separate debug file.
409 
410 findtextrel: Fix diagnostics to work with usual section ordering.
411 
412 libebl: i386 backend fix for multi-register integer return value location.
413 
414 Version 0.149:
415 
416 libdw: Decode new DW_OP_GNU_implicit_pointer operation;
417        new function dwarf_getlocation_implicit_pointer.
418 
419 libdwfl: New function dwfl_dwarf_line.
420 
421 addr2line: New flag -F/--flags to print more DWARF line information details.
422 
423 strip: -g recognizes .gdb_index as a debugging section.
424 
425 Version 0.148:
426 
427 libdw: Accept DWARF 4 format: new functions dwarf_next_unit, dwarf_offdie_types.
428        New functions dwarf_lineisa, dwarf_linediscriminator, dwarf_lineop_index.
429 
430 libdwfl: Fixes in core-file handling, support cores from PIEs.
431 	 When working from build IDs, don't open a named file that mismatches.
432 
433 readelf: Handle DWARF 4 formats.
434 
435 Version 0.147:
436 
437 libdw: Fixes in CFI handling, best possible handling of bogus CFA ops.
438 
439 libdwfl: Ignore R_*_NONE relocs, works around old (binutils) ld -r bugs.
440 
441 Version 0.146:
442 
443 libdwfl: New function dwfl_core_file_report.
444 
445 Version 0.145:
446 
447 Fix build with --disable-dependency-tracking.
448 
449 Fix build with most recent glibc headers.
450 
451 libelf: More robust to bogus section headers.
452 
453 libdw: Fix CFI decoding.
454 
455 libdwfl: Fix address bias returned by CFI accessors.
456 	 Fix core file module layout identification.
457 
458 readelf: Fix CFI decoding.
459 
460 Version 0.144:
461 
462 libelf: New function elf_getphdrnum.
463 	Now support using more than 65536 program headers in a file.
464 
465 libdw: New function dwarf_aggregate_size for computing (constant) type
466        sizes, including array_type cases with nontrivial calculation.
467 
468 readelf: Don't give errors for missing info under -a.
469 	 Handle Linux "VMCOREINFO" notes under -n.
470 
471 Version 0.143:
472 
473 libdw: Various convenience functions for individual attributes now use
474        dwarf_attr_integrate to look up indirect inherited attributes.
475        Location expression handling now supports DW_OP_implicit_value.
476 
477 libdwfl: Support automatic decompression of files in XZ format,
478 	 and of Linux kernel images made with bzip2 or LZMA (as well as gzip).
479 
480 Version 0.142:
481 
482 libelf: Add elf_getshdrnum alias for elf_getshnum and elf_getshdrstrndx alias
483 	for elf_getshstrndx and deprecate original names.  Sun screwed up
484 	their implementation and asked for a solution.
485 
486 libebl: Add support for STB_GNU_UNIQUE.
487 
488 elflint: Add support for STB_GNU_UNIQUE.
489 
490 readelf: Add -N option, speeds up DWARF printing without address->name lookups.
491 
492 libdw: Add support for decoding DWARF CFI into location description form.
493        Handle some new DWARF 3 expression operations previously omitted.
494        Basic handling of some new encodings slated for DWARF 4.
495 
496 Version 0.141:
497 
498 libebl: sparc backend fixes;
499 	some more arm backend support
500 
501 libdwfl: fix dwfl_module_build_id for prelinked DSO case;
502 	 fixes in core file support;
503 	 dwfl_module_getsym interface improved for non-address symbols
504 
505 strip: fix infinite loop on strange inputs with -f
506 
507 addr2line: take -j/--section=NAME option for binutils compatibility
508 	   (same effect as '(NAME)0x123' syntax already supported)
509 
510 Version 0.140:
511 
512 libelf: Fix regression in creation of section header
513 
514 libdwfl: Less strict behavior if DWARF reader ist just used to display data
515 
516 Version 0.139:
517 
518 libcpu: Add Intel SSE4 disassembler support
519 
520 readelf: Implement call frame information and exception handling dumping.
521 	 Add -e option.  Enable it implicitly for -a.
522 
523 elflint: Check PT_GNU_EH_FRAME program header entry.
524 
525 libdwfl: Support automatic gzip/bzip2 decompression of ELF files.
526 
527 Version 0.138:
528 
529 Install <elfutils/version.h> header file for applications to use in source
530 version compatibility checks.
531 
532 libebl: backend fixes for i386 TLS relocs; backend support for NT_386_IOPERM
533 
534 libcpu: disassembler fixes
535 
536 libdwfl: bug fixes
537 
538 libelf: bug fixes
539 
540 nm: bug fixes for handling corrupt input files
541 
542 Version 0.137:
543 
544 Minor fixes for unreleased 0.136 release.
545 
546 Version 0.136:
547 
548 libdwfl: bug fixes; new "segment" interfaces;
549 	 all the libdwfl-based tools now support --core=COREFILE option
550 
551 Version 0.135:
552 
553 libdwfl: bug fixes
554 
555 strip: changed handling of ET_REL files wrt symbol tables and relocs
556 
557 Version 0.134:
558 
559 elflint: backend improvements for sparc, alpha
560 
561 libdwfl, libelf: bug fixes
562 
563 Version 0.133:
564 
565 readelf, elflint, libebl: SHT_GNU_ATTRIBUTE section handling (readelf -A)
566 
567 readelf: core note handling for NT_386_TLS, NT_PPC_SPE, Alpha NT_AUXV
568 
569 libdwfl: bug fixes and optimization in relocation handling
570 
571 elfcmp: bug fix for non-allocated section handling
572 
573 ld: implement newer features of binutils linker.
574 
575 Version 0.132:
576 
577 libcpu: Implement x86 and x86-64 disassembler.
578 libasm: Add interface for disassembler.
579 
580 all programs: add debugging of branch prediction.
581 
582 libelf: new function elf_scnshndx.
583 
584 Version 0.131:
585 
586 libdw: DW_FORM_ref_addr support; dwarf_formref entry point now deprecated;
587        bug fixes for oddly-formatted DWARF
588 
589 libdwfl: bug fixes in offline archive support, symbol table handling;
590 	 apply partial relocations for dwfl_module_address_section on ET_REL
591 
592 libebl: powerpc backend support for Altivec registers
593 
594 Version 0.130:
595 
596 readelf: -p option can take an argument like -x for one section,
597 	 or no argument (as before) for all SHF_STRINGS sections;
598 	 new option --archive-index (or -c);
599 	 improved -n output for core files, on many machines
600 
601 libelf: new function elf_getdata_rawchunk, replaces gelf_rawchunk;
602 	new functions gelf_getnote, gelf_getauxv, gelf_update_auxv
603 
604 readelf, elflint: handle SHT_NOTE sections without requiring phdrs
605 
606 elflint: stricter checks on debug sections
607 
608 libdwfl: new functions dwfl_build_id_find_elf, dwfl_build_id_find_debuginfo,
609 	 dwfl_module_build_id, dwfl_module_report_build_id;
610 	 support dynamic symbol tables found via phdrs;
611 	 dwfl_standard_find_debuginfo now uses build IDs when available
612 
613 unstrip: new option --list (or -n)
614 
615 libebl: backend improvements for sparc, alpha, powerpc
616 
617 Version 0.129:
618 
619 readelf: new options --hex-dump (or -x), --strings (or -p)
620 
621 addr2line: new option --symbols (or -S)
622 
623 Version 0.128:
624 
625 new program: unstrip
626 
627 elfcmp: new option --hash-inexact
628 
629 Version 0.127:
630 
631 libdw: new function dwarf_getsrcdirs
632 
633 libdwfl: new functions dwfl_module_addrsym, dwfl_report_begin_add,
634 	 dwfl_module_address_section
635 
636 Version 0.126:
637 
638 new program: ar
639 
640 Version 0.125:
641 
642 elflint: Compare DT_GNU_HASH tests.
643 
644 move archives into -static RPMs
645 
646 libelf, elflint: better support for core file handling
647 
648 Version 0.124:
649 
650 libebl: sparc backend support for return value location
651 
652 libebl, libdwfl: backend register name support extended with more info
653 
654 libelf, libdw: bug fixes for unaligned accesses on machines that care
655 
656 readelf, elflint: trivial bugs fixed
657 
658 Version 0.123:
659 
660 libebl: Backend build fixes, thanks to Stepan Kasal.
661 
662 libebl: ia64 backend support for register names, return value location
663 
664 libdwfl: Handle truncated linux kernel module section names.
665 
666 libdwfl: Look for linux kernel "vmlinux" files with ".debug" suffix.
667 
668 elflint: Fix checks to permit --hash-style=gnu format.
669 
670 Version 0.122:
671 
672 libebl: add function to test for relative relocation
673 
674 elflint: fix and extend DT_RELCOUNT/DT_RELACOUNT checks
675 
676 elflint, readelf: add support for DT_GNU_HASH
677 libelf: add elf_gnu_hash
678 
679 elflint, readelf: add support for 64-bit SysV-style hash tables
680 
681 libdwfl: new functions dwfl_module_getsymtab, dwfl_module_getsym.
682 
683 Version 0.121:
684 
685 libelf: bug fixes for rewriting existing files when using mmap.
686 
687 make all installed headers usable in C++ code.
688 
689 readelf: better output format.
690 
691 elflint: fix tests of dynamic section content.
692 
693 ld: Implement --as-needed, --execstack, PT_GNU_STACK.  Many small patches.
694 
695 libdw, libdwfl: handle files without aranges info.
696 
697 Version 0.120:
698 
699 Bug fixes.
700 
701 dwarf.h updated for DWARF 3.0 final specification.
702 
703 libdwfl: New function dwfl_version.
704 
705 The license is now GPL for most files.  The libelf, libebl, libdw,
706 and libdwfl libraries have additional exceptions.  Add reference to
707 OIN.
708 
709 Version 0.119:
710 
711 bug fixes
712 
713 Version 0.118:
714 
715 elflint: more tests.
716 
717 libdwfl: New function dwfl_module_register_names.
718 
719 libebl: New backend hook for register names.
720 
721 Version 0.117:
722 
723 libdwfl: New function dwfl_module_return_value_location.
724 
725 libebl: Backend improvements for several CPUs.
726 
727 Version 0.116:
728 
729 libdw: New functions dwarf_ranges, dwarf_entrypc, dwarf_diecu,
730        dwarf_entry_breakpoints.  Removed Dwarf_Func type and functions
731        dwarf_func_name, dwarf_func_lowpc, dwarf_func_highpc,
732        dwarf_func_entrypc, dwarf_func_die; dwarf_getfuncs callback now uses
733        Dwarf_Die, and dwarf_func_file, dwarf_func_line, dwarf_func_col
734        replaced by dwarf_decl_file, dwarf_decl_line, dwarf_decl_column;
735        dwarf_func_inline, dwarf_func_inline_instances now take Dwarf_Die.
736        Type Dwarf_Loc renamed to Dwarf_Op; dwarf_getloclist,
737        dwarf_addrloclists renamed dwarf_getlocation, dwarf_getlocation_addr.
738 
739 Version 0.115:
740 
741 libelf: speed-ups of non-mmap reading.
742 
743 strings: New program.
744 
745 Implement --enable-gcov option for configure.
746 
747 libdw: New function dwarf_getscopes_die.
748 
749 Version 0.114:
750 
751 libelf: new function elf_getaroff
752 
753 libdw: Added dwarf_func_die, dwarf_func_inline, dwarf_func_inline_instances.
754 
755 libdwfl: New functions dwfl_report_offline, dwfl_offline_section_address,
756 	 dwfl_linux_kernel_report_offline.
757 
758 ranlib: new program
759 
760 Version 0.113:
761 
762 elflint: relax a bit. Allow version definitions for defined symbols against
763 DSO versions also for symbols in nobits sections.  Allow .rodata section
764 to have STRINGS and MERGE flag set.
765 
766 strip: add some more compatibility with binutils.
767 
768 Version 0.112:
769 
770 elfcmp: some more relaxation.
771 
772 elflint: many more tests, especially regarding to symbol versioning.
773 
774 libelf: Add elfXX_offscn and gelf_offscn.
775 
776 libasm: asm_begin interface changes.
777 
778 libebl: Add three new interfaces to directly access machine, class, and
779 data encoding information.
780 
781 objdump: New program.  Just the beginning.
782 
783 Version 0.111:
784 
785 libdw: now contains all of libdwfl.  The latter is not installed anymore.
786 
787 elfcmp: little usability tweak, name and index of differing section is printed.
788 
789 Version 0.110:
790 
791 libelf: fix a number of problems with elf_update
792 
793 elfcmp: fix a few bugs.  Compare gaps.
794 
795 Fix a few PLT problems and mudflap build issues.
796 
797 libebl: Don't expose Ebl structure definition in libebl.h.  It's now private.
798 
799 Version 0.109:
800 
801 libebl: Check for matching modules.
802 
803 elflint: Check that copy relocations only happen for OBJECT or NOTYPE symbols.
804 
805 elfcmp: New program.
806 
807 libdwfl: New library.
808 
809 Version 0.108:
810 
811 strip: fix bug introduced in last change
812 
813 libdw: records returned by dwarf_getsrclines are now sorted by address
814 
815 Version 0.107:
816 
817 readelf: improve DWARF output format
818 
819 strip: support Linux kernel modules
820 
821 Version 0.106:
822 
823 libdw: Updated dwarf.h from DWARF3 spec
824 libdw: add new funtions dwarf_func_entrypc, dwarf_func_file, dwarf_func_line,
825 dwarf_func_col, dwarf_getsrc_file
826 
827 Version 0.105:
828 
829 addr2line: New program
830 
831 libdw: add new functions: dwarf_addrdie, dwarf_macro_*, dwarf_getfuncs,
832 dwarf_func_*.
833 
834 findtextrel: use dwarf_addrdie
835 
836 Version 0.104:
837 
838 findtextrel: New program.
839 
840 Version 0.103:
841 
842 libdw: Fix using libdw.h with gcc < 4 and C++ code.  Compiler bug.
843 
844 Version 0.102:
845 
846 More Makefile and spec file cleanups.
847 
848 Version 0.101:
849 
850 Remove most gettext autoconf handling.
851 
852 Add more warnings
853 
854 Fix resulting problems.  One actual bug found and fixed this way
855 
856 Version 0.100:
857 
858 libebl: Fix x86-64 relocations.
859 
860 Add -Wunused -Wextra warnings.
861 
862 Some cleanups resulting from those additional warnings.
863 
864 Lots of Makefile cleanup.
865 
866 Version 0.99:
867 
868 libelf: add gelf_checksum prototype to <libelf.h>
869 
870 libelf: fix elf*_checksum handling of NOBITS sections
871 
872 Finish mudflap support.
873 
874 Fix three bugs found by mudflap.
875 
876 ld: add as_needed support
877 
878 Version 0.98:
879 
880 readelf: in section to segment mapping, indicate read-only sections.
881 
882 elflint: more relaxation for GNU ld
883 
884 Version 0.97:
885 
886 Fix compiling with gcc 4.0.
887 Some tests called elflint without appropriate LD_LIBRARY_PATH.
888 
889 Version 0.96:
890 
891 Fix support for platforms with lib64.
892 
893 Version 0.95:
894 
895 libebl: add ppc and ppc64 support
896 
897 readelf: fix minimal memory leak.
898 
899 Add support to compile with mudflap.
900 
901 Modernize configure.ac.  Move scripts in config subdir.
902 
903 Modernize *-po directory infrastructure.
904 
905 libelf: Add gelf_getlib and gelf_update_lib
906 
907 readelf: print liblist sections
908 
909 Version 0.94:
910 
911 Fix some minimal build problems.
912 
913 Version 0.93:
914 
915 ibdw: tons of new functionality and bug fixes.  Several interface changes.
916 
917 readelf: use libdw now.
918 
919 libdwarf: removed completely.
920 
921 Version 0.92:
922 
923 configuration changes.
924 
925 Version 0.91:
926 
927 libdw: fix memory handling.  Implement source line handling.
928 nm: use libdw instead of libdwarf.
929 libelf: change to GPL from OSL1 for now.
930 
931 Version 0.90:
932 
933 libebl: Recognize a few more section types and dynamic tags and return
934 approriate strings.
935 
936 Version 0.89:
937 
938 strip: fix overwriting of symbol table in input file.
939 
940 Version 0.88:
941 
942 libebl: Add some ia64 bits.
943 
944 Version 0.87:
945 
946 Bug fixes for big endian and some 64-bit machines.
947 
948 Version 0.86:
949 
950 strip: fix handling of Alpha and s390x which use incorrect hash bucket sizes.
951 
952 ld: tons of changes, moving towards usability.
953 
954 Version 0.85:
955 
956 strip: update section group symbol index if the associated symbol table changed
957 
958 libelf: fix two problems with generating output not via mmap
959 
960 elflint: add probably 10-15 more tests
961 libebl: add support for some of the new tests
962 
963 ld: gazillion changes
964 
965 Version 0.84:
966 
967 elflint: deal with .rel.dyn section.  Fix a problem with rela platforms.
968 Handle PT_GNU_STACK.  Change to write messages to stdout.
969 
970 readelf: fix a problem with version information in the symbol table output.
971 
972 strip: update all version symbol table entries
973 
974 Version 0.83:
975 
976 size: fix a warning
977 
978 strip: last changed caused problems when the symbol table is before the
979 relocation section.  Fixed.  This fix also improved the asymptotic
980 behavior if many symbol table sections are present.
981 
982 Version 0.82:
983 
984 Run strip tests with the correct libelf and libebl.
985 
986 libelf: fix bug in verneed byte order changing code.
987 
988 Version 0.81:
989 
990 strip: Remove unused symbol table entries.  This might require updating
991 various other sections.
992 
993 Version 0.80:
994 
995 Fix some libelf problems with ET_REL files.
996 
997 Version 0.79:
998 
999 More warning changes, mainly by jbj.
1000 
1001 libdw: yet more new code.  dwarf_child and dwarf_sibling should now actually
1002 work.
1003 
1004 Version 0.78:
1005 
1006 libdw: 10+ new functions.  get-pubnames2 works now fully.  Almost all the
1007 code needed for nm is in place.
1008 
1009 Version 0.77:
1010 
1011 cleanups to compile cleanly with gcc 3.3 and -Werror.
1012 
1013 libdw: some new code.
1014 
1015 Version 0.76:
1016 
1017 libebl: Fix last patch to recognize relocation sections.   We must not
1018 use the name.
1019 
1020 Version 0.75:
1021 
1022 libebl: .debug_ranges is a DWARF 3 debug section
1023 libebl: recognize relocation sections for debug section
1024 Patches by Jakub Jelinek.
1025 
1026 Version 0.74:
1027 
1028 Cleanups and more SPARC support by Tom Callaway <tcallaway@redhat.com>.
1029 
1030 Version 0.73:
1031 
1032 64-bit cleanups for the programs.
1033 
1034 Version 0.72:
1035 
1036 libelf: and yet more fun with endian tranformation at output time.
1037 
1038 Version 0.71:
1039 
1040 libelf: more fun with endian tranformation at output time.  Add test for it.
1041 
1042 Version 0.70:
1043 
1044 libelf: Two little bugs left from previous patch to handle section output
1045 order.
1046 
1047 libelf: add unlikely in some more places.
1048 
1049 Version 0.69:
1050 
1051 libelf: fix output routines to handle case where section indeces and
1052 ordre in the output file don't match correctly.  Patch by Jakub.
1053 
1054 elflint: fix test of note section content for 64-bit platforms and files
1055 with different byte order.
1056 
1057 Version 0.68:
1058 
1059 libebl: Fix SH_ENTSIZE_HASH definition (patch by Jakub)
1060 
1061 Version 0.67:
1062 
1063 libelf: correct mistake in error string handling.
1064 
1065 libelf: Implement ELF_F_PERMISSIVE.
1066 strip: Implement --permissive option.
1067 
1068 Version 0.66:
1069 
1070 strip: Implement -g option.
1071 
1072 libelf: Handle broken hash table entry sizes.
1073 
1074 libebl: New function ebl_debugscn_p.  Use it where appropriate.
1075 
1076 Version 0.65:
1077 
1078 libelf: Use correct file size for NOBITS section with ELF_F_LAYOUT set
1079 
1080 Version 0.64:
1081 
1082 libelf: Make error handling more robust.
1083 libelf: Use TLS in error handler if configured with --enable-tls
1084 
1085 tests: input files are now distributed, not uuencoded in the shell scripts
1086 
1087 libdw: implement error handling, dwarf_get_pubnames
1088 
1089 Version 0.63:
1090 
1091 Build (incomplete) libdw.
1092 
1093 Version 0.62:
1094 
1095 Get rid of libtool.
1096 
1097 Version 0.61:
1098 
1099 Fix URL of OSL.
1100 
1101 Version 0.60:
1102 
1103 libebl: Handle .gnu.warning.* sections correctly.
1104 
1105 size: Implement -t option.
1106 
1107 libebl: Add IA-64 support.
1108 libebl: Update SH relocations.
1109 libebl: Add Alpha support.
1110 libebl: Add Arm support.
1111 libebl: Add support for all currently known architecture to the loader.
1112 
1113 Version 0.59:
1114 
1115 nm: Implement -S option.  Correct portable output format.  Implement -s option.
1116 
1117 libelf: Take offset of archive into account in elf_rand.
1118 
1119 Version 0.58:
1120 
1121 strip: fix handling of ET_REL files.
1122 Add tests for strip.
1123 
1124 Version 0.57:
1125 
1126 strip: respect layout of input file
1127 
1128 Version 0.56:
1129 
1130 strip: handle files with large number of sections.
1131 
1132 Version 0.55:
1133 
1134 libelf: quite a few bug fixes by Alex Larsson.
1135 
1136 strip: implement -f option to place stripped sections into a separate
1137 file.  By Alex Larsson.
1138 
1139 Version 0.54:
1140 
1141 strip: don't let STT_SECTION symbols keeps sections from being removed
1142 
1143 elflint: local symbols are allowed in .dynsym
1144 elflint: special case .rel.dyn a bit
1145 
1146 Version 0.53:
1147 
1148 elflint: check types and flags of special sections defined in gABI
1149 
1150 libebl: add x86-64 support
1151 
1152 Version 0.52:
1153 
1154 Start improvement of debug info handling in nm.
1155 
1156 libasm: implement asm_adduleb128 and asm_addsleb128 and a test for them
1157 
1158 Version 0.51:
1159 
1160 Fix build on 64-bit platforms.
1161 
1162 Version 0.50:
1163 
1164 nm: print file/line number also for local symbols
1165 
1166 use versions scripts not libtool's useless -export-symbols option
1167 
1168 Version 0.49:
1169 
1170 Update to autoconf 2.54 and automake 1.7.
1171 
1172 elflint: check note sections
1173 
1174 libdwarf: a number of bug fixes
1175 
1176 readelf: print .debug_info section content
1177 
1178 dwarf.h: Update from draft 7
1179 
1180 Version 0.48:
1181 
1182 libcpu: beginning
1183 
1184 libelf: new function to read parts of the ELF file
1185 
1186 libebl: support for note section handling
1187 
1188 readelf: dump note sections
1189 
1190 Version 0.47:
1191 
1192 libelf: fix little new section-handling related bugs in elf_getshstrndx
1193 and elf_nextscn
1194 
1195 elflint: tests for mandatory content of dynamic section
1196 
1197 libasm: better handling of absolute symbols
1198 
1199 Version 0.46:
1200 
1201 libasm: rewrite to store Elf_Scn* instead of indices
1202 
1203 nm: finish many-section support
1204 
1205 nm: use debug in to print file/line info in sysv format
1206 
1207 libdwarf: fix a few bugs in DIE handling
1208 
1209 Version 0.45:
1210 
1211 libelf: major rewrite to keep Elf_Scn references valid until elf_end
1212 
1213 Version 0.44:
1214 
1215 libasm: Add support for bss, ABS, and COM sections.
1216 
1217 libebl: ebl_section_name takes now two index arguments to distinguish
1218 between special sections and extended sections
1219 
1220 Version 0.43:
1221 
1222 General: fix a few problem gcc 3.1 had with the code.
1223 
1224 libelf: implement {gelf,elf32,elf64}_checksum
1225 
1226 libelf: optimze DSO: fewer relocations, fewer PLTs
1227 
1228 add msg_tst test
1229 
1230 ld: use correct section header string table index; write correct index
1231 
1232 add dependencies for *.sym files
1233 
1234 Version 0.42:
1235 
1236 libelf: add elf_getshnum and elf_getshstrndx
1237 
1238 libebl: update section type name function
1239 
1240 elflint: tons of fixes wrt large number of sections.  New tests in this area.
1241 Same amount of other bug fixes.
1242 
1243 size, strip, nm: better support for large number of sections.  Including
1244 using correct section header string table
1245 
1246 libasm: correctly create data structures for large number of sections
1247 
1248 new tests asm-tst4 and asm-tst5 to check large number of sections
1249 
1250 libasm: implement section group generation
1251 
1252 elflint: more tests on section groups.  Improve performance on existing
1253 section group tests
1254 
1255 Version 0.41:
1256 
1257 ld: add undefined symbols to dynamic symbol table if --export-dynamic is
1258 not given
1259 
1260 ld: fix value of e_entry
1261 
1262 Version 0.40:
1263 
1264 elflint: print section names in error messages
1265 
1266 elflint: mustn't warn about multiple DT_NULL
1267 
1268 ld: don't emit all symbols if --export-dynamic is not given
1269 
1270 ld: correct compute symbol address in output file (section index was off by 1)
1271 
1272 ld: generate correct version info in dynsym without --export-dynamic and
1273 in symtab
1274 
1275 Version 0.39:
1276 
1277 Fix check of various e_*size entries in elflint.
1278 
1279 Handle text output in asm_newsym.
1280 
1281 Finish checks in asm-tst3.
1282 
1283 Version 0.38:
1284 
1285 Update to autoconf 2.53, automake 1.6, gettext 0.11+.
1286 
1287 Introduce *.sym files to restrict export from DSOs.
1288 
1289 Use attribute_hidden and internal_function to optimize DSO code.
1290 
1291 Add TLS definitions in elf.h and handle them in readelf.
1292 
1293 Fix bug in verdef section generation in ld.
1294 
1295 Add initial libasm code.
1296 
1297 Version 0.37:
1298 
1299 Implement better hash size optimization heuristic in ld.  It uses a formula
1300 taking number of tests into account.
1301 
1302 Lots of small bug fixes.
1303 
1304 Improve readelf output format.  Respect various sh_link/sh_info values.
1305 Correctly print versioning information for symbol tables.
1306 
1307 Version 0.36:
1308 
1309 Implement preprocessing of linker script.  Recognize -z combreloc.
1310 
1311 Version 0.35:
1312 
1313 Implement -z ignore|record for ld.
1314 
1315 Implement creating of .gnu.version_r and .gnu.version sections.  The
1316 .gnu.version does not yet contain correct info for defined and versioned
1317 symbols (means .gnu.version_d is not yet implemented).
1318 
1319 Implement gelf_update_* functions to create versioning data.
1320 
1321 Version 0.34:
1322 
1323 Add DT_RUNPATH/DT_RPATH entries to dynamic section.  Create .plt and
1324 .rel.plt sections (completely).  Add support for all four PLT related
1325 dynamic section entries.  Add callback function for PLT creation.
1326 
1327 More tests in elflint.  Add support for very strict checking which for
1328 now flags level 2 (deprecated features) usage.
1329 
1330 Version 0.33:
1331 
1332 Create dynamic symbol table, dynamic string table, and hash table to ld.
1333 
1334 Add hash table histogram support to readelf.
1335 
1336 Version 0.32:
1337 
1338 more work on elflint
1339 
1340 ld now creates the dynamic section and references it.  Start adding entries
1341 to dynamic section.
1342 
1343 Version 0.31:
1344 
1345 Start implementing elflint.
1346 
1347 Version 0.30:
1348 
1349 Fix handling of NOBITS sections in elf_getdata.
1350 
1351 Start implementing generation of executables and DSOs in ld.
1352 Generation of program header mostly done.  Address computation done.
1353 Extension of linker script syntax.
1354 
1355 Various cleanups.
1356 
1357 Implement section group handling in readelf.
1358 
1359 Version 0.29:
1360 
1361 Implement section groups.  This involved a lot of code moving.  The
1362 new code is entirely untested since gas/gcc are currently not able to
1363 create section groups.  ld works fine on files without section groups.
1364 
1365 Version 0.28:
1366 
1367 Fix problem with adding more section in elf_newscn.  The section pointers
1368 for the data buffers wasn't adjusted.
1369 
1370 Fix elf_getdata with nonzero second parameter.  Correctly handle creation
1371 of internal data buffer for machines without unaligned access.
1372 
1373 Version 0.27:
1374 
1375 Start adding support to selectively add sections.  Includes support for
1376 section groups.
1377 Add --gc-sections/--no-gc-sections options.
1378 Add general section merging support.
1379 
1380 Fix a bug in section group support in strip.
1381 
1382 Fix some potential problems with hash value in dynamic hash implementation.
1383 
1384 Version 0.26:
1385 
1386 section merging works in ld.
1387 
1388 Version 0.25:
1389 
1390 Actually create data structures from version map file and use it to hide
1391 symbols in ld.
1392 
1393 Implement -s -s for ld.
1394 
1395 Version 0.24:
1396 
1397 Improve relocation table output in readelf.  Avoid some crashes.
1398 Finish many section handling in readelf.
1399 
1400 Finish: finish implementation of ld -r.  At least some simple tests pass.
1401 
1402 Version 0.23:
1403 
1404 Fix a number of errors in ELF_C_WRITE handling.
1405 
1406 Almost finished implementation of ld -r.  The data sections are all copied.
1407 Handling of symbol tables is missing.
1408 
1409 Version 0.22:
1410 
1411 Handle DSO and archive input files correctly if -r option is given.
1412 
1413 Gracefully deal with no phdr in new file in libelf.
1414 Fix various small error handling problems.
1415 Don't mmap file for output unless the command says so.
1416 
1417 Add code to create ELF section header table to ld finalize routines.
1418 
1419 Version 0.21:
1420 
1421 Fix some problems with recursive handling of archives in libelf.
1422 
1423 Improve messages printed by nm.
1424 
1425 Add symbol binding name handling to libebl.  Fix section name handling in
1426 libebl.
1427 
1428 readelf and nm use more libebl functions.
1429 
1430 Handle XINDEX correctly in nm and string.
1431 
1432 Add first machine ld backend library (i386).
1433 Use it.  Recognize -r and --shared.  Avoid using -lxxx parameters for -r.
1434 Create ELF header in output file.  Change mode of output file according to
1435 output file type.  Reorganize callback initialization in ld.
1436 
1437 Version 0.20:
1438 
1439 Fix some memory leaks in libelf.
1440 
1441 Version 0.19:
1442 
1443 Implement reading version script.  Both inside linker scripts and via the
1444 --version-script command line parameter.  Uses the same code.
1445 What remains to be done is to implement a data structure which allows
1446 efficient matching against the version names to decide which pattern
1447 matches.
1448 
1449 Beginning of output generation and output writing functions.
1450 
1451 Version 0.18:
1452 
1453 Finish implementation for DSO input file handling.  Implement rpath, runpath,
1454 and LD_LIBRARY_PATH handling.
1455 
1456 Version 0.17:
1457 
1458 make handling of e_shnum overflow in libelf standard conforming
1459 
1460 ld now actually can handle DSOs in linker scripts.  Handling of DT_RUNPATH,
1461 DT_RPATH, -rpath, -rpath-link still remains to be implemented.
1462 
1463 fix handling of -L parameters.  Make actual use of the default_paths element.
1464 
1465 make re-definition of symbols in and from DSO compatible with existing linker
1466 
1467 Version 0.16:
1468 
1469 more work on assigning input sections to output sections.
1470 
1471 Add gelf_xlatetof and gelf_xlatetom which were accidently left out.
1472 
1473 Fix memory handling of section headers.
1474 
1475 Version 0.15:
1476 
1477 Add many-section support to ld.  Add various new command line parameters.
1478 Allow pagesize to be specified in linker script or on the command line.
1479 Collect input sections in list for the output section according to the rules
1480 specified in the linker script.
1481 
1482 Version 0.14:
1483 
1484 Fix some problems in the internal list handling which had the result
1485 that we didn't look for some of the unresolved symbols.
1486 
1487 Free some memory if we know we don't need it anymore.
1488 
1489 Optimize the list of unresolved symbols.  Throw out symbols which are
1490 meanwhile resolved.
1491 
1492 Version 0.13:
1493 
1494 Got file reading correct now.  The files are all read while parsing
1495 the parameters.  No creating of data structures to describe the linker
1496 command line.  The symbol table is built up while reading the files.
1497 DSOs are handled now.  -( -) handling is optimized.
1498 
1499 Version 0.12:
1500 
1501 Linker read linker scripts everywhere.  Handles --whole-archive.  Recognizes
1502 --dynamic and --static.  Collects defined and undefined symbols.  Recognizes
1503 conflicts.
1504 
1505 libebl now defines functions to call the callbacks.  Add generic name handling
1506 in these new functions.  Remove the code from readelf and call the new
1507 functions.
1508 
1509 Version 0.11:
1510 
1511 Start of linker.  Basic argument parsing, finding of input files,
1512 linker script reading.
1513 
1514 Version 0.10:
1515 
1516 Implement dwarf_get_fde_n(), dwarf_get_abbrev(), dwarf_get_abbrev_tag(),
1517 dwarf_get_abbrev_code(), dwarf_get_abbrev_children_flag(),
1518 dwarf_get_abbrev_entry(), dwarf_get_fde_at_pc(), and tests for it.
1519 
1520 Version 0.9:
1521 
1522 Implement dwarf_get_fde_list_eh(), dwarf_get_cie_of_fde(),
1523 dwarf_get_fde_range(), dwarf_get_cie_info(), dwarf_get_fde_instr_bytes(),
1524 and tests for them.
1525 
1526 Version 0.8:
1527 
1528 Make handling of binaries in other byte order work and add tests for it.
1529 
1530 Version 0.7:
1531 
1532 Implement dwarf_get_aranges(), dwarf_get_arange(), dwarf_get_cu_die_offset(),
1533 dwarf_get_arange_info(), and tests for them.
1534 
1535 Version 0.6:
1536 
1537 Implement dwarf_get_global(), dwarf_globname(), dwarf_global_die_offset(),
1538 dwarf_global_cu_offset(), dwarf_global_name_offsets(), and tests for them
1539 
1540 Version 0.5:
1541 
1542 Implemented dwarf_srclines(), dwarf_srcfiles(), dwarf_linebeginstatement(),
1543 dwarf_lineendsequence(), dwarf_lineno(), dwarf_lineaddr(), dwarf_lineoff(),
1544 dwarf_linesrc(), dwarf_lineblock(), dwarf_lineprologueend(),
1545 dwarf_lineepiloguebegin(), and tests for them.
1546 
1547 Version 0.4:
1548 
1549 Implemented dwarf_loclist().
1550 
1551 Version 0.3:
1552 
1553 Implemented dwarf_dieoffset(), dwarf_die_CU_offset(), dwarf_diename() and
1554 tests.
1555 
1556 Implemented dwarf_attrlist(), dwarf_hasattr(), dwarf_attr(), dwarf_lowpc(),
1557 dwarf_highpc(), dwarf_bytesize(), dwarf_bitsize(), dwarf_bitoffset(),
1558 dwarf_srclang(), dwarf_arrayorder(), dwarf_hasform(), dwarf_whatform(),
1559 dwarf_whatattr(), dwarf_formref(), dwarf_global_formref(), dwarf_formaddr(),
1560 dwarf_formflag(), dwarf_formudata(), dwarf_formsdata(), dwarf_formblock,
1561 dwarf_formstring() and tests for them.
1562 
1563 Version 0.2:
1564 
1565 Implemented dwarf_offdie()), dwarf_tag(), dwarf_dieoffset(),
1566 dwarf_die_CU_offset(), dwarf_diename() and tests for them.
1567 
1568 Version 0.1:
1569 
1570 First libdwarf functions work.
1571 
1572 Version 0.0:
1573 
1574 libelf and parts of libebl are done.
1575