This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository binutils-gdb.
from eabf307f1d PE linker segmentation fault with MALLOC_PERTURB_=1 new fceac76e64 include: new header ctf.h: file format description new 2e94b05630 include: new header ctf-api.h new 60da9d9559 libctf: lowest-level memory allocation and debug-dumping wrappers new 94585e7f93 libctf: low-level list manipulation and helper utilities new 479604f44f libctf: error handling new c0754cdd9a libctf: hashing new a5be9bbe89 libctf: implementation definitions related to file creation new 47d546f427 libctf: creation functions new 72f3392127 libctf: opening new 9402cc593f libctf: mmappable archives new 143dce8481 libctf: ELF file opening via BFD new 316afdb130 libctf: core type lookup new b437bfe0f4 libctf: lookups by name and symbol new c499eb6896 libctf: type copying new 6c33b742ce libctf: library version enforcement new 6dbf2b7340 libctf: labels new a30b3e182a libctf: debug dumping new 0e65dfbaf3 libctf: build system new 7d9813f196 binutils: CTF support for objdump and readelf new 88981b157b Add libctf to top-level MAINTAINERS; add myself as CTF maintainer. new c0e70c624f Remove find_old_style_renaming_symbol
The 21 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: ChangeLog | 13 + MAINTAINERS | 2 +- Makefile.def | 6 + Makefile.in | 991 +++++- binutils/ChangeLog | 51 + binutils/MAINTAINERS | 1 + binutils/Makefile.am | 10 +- binutils/Makefile.in | 18 +- binutils/NEWS | 5 +- binutils/aclocal.m4 | 10 +- binutils/doc/Makefile.in | 9 +- binutils/doc/binutils.texi | 19 + binutils/doc/ctf.options.texi | 14 + binutils/objdump.c | 169 +- binutils/readelf.c | 206 ++ configure | 2 +- configure.ac | 2 +- gdb/ChangeLog | 13 + gdb/ada-exp.y | 13 - gdb/ada-lang.c | 180 +- gdb/ada-lang.h | 3 - include/ChangeLog | 158 + include/ctf-api.h | 387 ++ include/ctf.h | 564 +++ libctf/ChangeLog | 109 + libctf/Makefile.am | 31 + libctf/Makefile.in | 767 ++++ {binutils => libctf}/aclocal.m4 | 99 +- libctf/config.h.in | 113 + libctf/configure | 7462 +++++++++++++++++++++++++++++++++++++++ libctf/configure.ac | 63 + libctf/ctf-archive.c | 756 ++++ libctf/ctf-create.c | 2032 +++++++++++ libctf/ctf-decl.c | 195 + libctf/ctf-dump.c | 595 ++++ libctf/ctf-error.c | 93 + libctf/ctf-hash.c | 277 ++ libctf/ctf-impl.h | 385 ++ libctf/ctf-labels.c | 138 + libctf/ctf-lookup.c | 427 +++ libctf/ctf-open-bfd.c | 351 ++ libctf/ctf-open.c | 1691 +++++++++ libctf/ctf-subr.c | 259 ++ libctf/ctf-types.c | 1023 ++++++ libctf/ctf-util.c | 176 + libctf/elf.h | 61 + libctf/swap.h | 60 + 47 files changed, 19749 insertions(+), 260 deletions(-) create mode 100644 binutils/doc/ctf.options.texi create mode 100644 include/ctf-api.h create mode 100644 include/ctf.h create mode 100644 libctf/ChangeLog create mode 100644 libctf/Makefile.am create mode 100644 libctf/Makefile.in copy {binutils => libctf}/aclocal.m4 (95%) create mode 100644 libctf/config.h.in create mode 100755 libctf/configure create mode 100644 libctf/configure.ac create mode 100644 libctf/ctf-archive.c create mode 100644 libctf/ctf-create.c create mode 100644 libctf/ctf-decl.c create mode 100644 libctf/ctf-dump.c create mode 100644 libctf/ctf-error.c create mode 100644 libctf/ctf-hash.c create mode 100644 libctf/ctf-impl.h create mode 100644 libctf/ctf-labels.c create mode 100644 libctf/ctf-lookup.c create mode 100644 libctf/ctf-open-bfd.c create mode 100644 libctf/ctf-open.c create mode 100644 libctf/ctf-subr.c create mode 100644 libctf/ctf-types.c create mode 100644 libctf/ctf-util.c create mode 100644 libctf/elf.h create mode 100644 libctf/swap.h