This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_kernel/gnu-master-arm-next-allnoconfig in repository toolchain/ci/binutils-gdb.
from eabf307f1d PE linker segmentation fault with MALLOC_PERTURB_=1 adds fceac76e64 include: new header ctf.h: file format description adds 2e94b05630 include: new header ctf-api.h adds 60da9d9559 libctf: lowest-level memory allocation and debug-dumping wrappers adds 94585e7f93 libctf: low-level list manipulation and helper utilities adds 479604f44f libctf: error handling adds c0754cdd9a libctf: hashing adds a5be9bbe89 libctf: implementation definitions related to file creation adds 47d546f427 libctf: creation functions adds 72f3392127 libctf: opening adds 9402cc593f libctf: mmappable archives adds 143dce8481 libctf: ELF file opening via BFD adds 316afdb130 libctf: core type lookup adds b437bfe0f4 libctf: lookups by name and symbol adds c499eb6896 libctf: type copying adds 6c33b742ce libctf: library version enforcement adds 6dbf2b7340 libctf: labels adds a30b3e182a libctf: debug dumping adds 0e65dfbaf3 libctf: build system adds 7d9813f196 binutils: CTF support for objdump and readelf adds 88981b157b Add libctf to top-level MAINTAINERS; add myself as CTF maintainer. adds c0e70c624f Remove find_old_style_renaming_symbol adds a2f4b66c9e x86: Add CheckRegSize to AVX512_BF16 instructions with Disp8ShiftVL adds 1e129bbefa MIPS/LD: Skip overflow check for %pcrel_hi relocations adds 90f879191c Automatic date update in version.in adds 9698cf9b1c Fix libctf build on non-ELF targets. adds 90bd54236c Do not build libctf for targets that do not use the ELF file [...] new f948b2de97 Sync top level files with versions from gcc.
The 1 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 | 52 + MAINTAINERS | 2 +- Makefile.def | 52 +- Makefile.in | 17662 ++++++++++++++++++------ Makefile.tpl | 54 +- bfd/ChangeLog | 5 + bfd/elfxx-mips.c | 2 - bfd/version.h | 2 +- binutils/ChangeLog | 64 + binutils/MAINTAINERS | 1 + binutils/Makefile.am | 12 +- binutils/Makefile.in | 18 +- binutils/NEWS | 5 +- binutils/aclocal.m4 | 10 +- binutils/config.in | 3 + binutils/configure | 64 +- binutils/configure.ac | 30 + binutils/doc/Makefile.in | 10 +- binutils/doc/binutils.texi | 19 + binutils/doc/ctf.options.texi | 14 + binutils/objdump.c | 195 +- binutils/readelf.c | 228 + configure | 681 +- configure.ac | 64 +- gas/ChangeLog | 9 + gas/testsuite/gas/i386/inval-avx512f.l | 5 + gas/testsuite/gas/i386/inval-avx512f.s | 3 + gas/testsuite/gas/i386/x86-64-inval-avx512f.l | 6 + gas/testsuite/gas/i386/x86-64-inval-avx512f.s | 4 + 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 + ld/ChangeLog | 10 + ld/testsuite/ld-mips-elf/mips-elf.exp | 2 + ld/testsuite/ld-mips-elf/reloc-pcrel-r6.d | 18 + ld/testsuite/ld-mips-elf/reloc-pcrel-r6.ld | 9 + ld/testsuite/ld-mips-elf/reloc-pcrel-r6.s | 27 + ld/testsuite/ld-mips-elf/undefweak-overflow.d | 16 +- ld/testsuite/ld-mips-elf/undefweak-overflow.s | 2 - libctf/ChangeLog | 117 + libctf/Makefile.am | 31 + libctf/Makefile.in | 767 + {binutils => libctf}/aclocal.m4 | 99 +- libctf/config.h.in | 116 + libctf/configure | 7570 ++++++++++ libctf/configure.ac | 94 + 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 | 356 + 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 + opcodes/ChangeLog | 7 + opcodes/i386-opc.tbl | 4 +- opcodes/i386-tbl.h | 4 +- 69 files changed, 33850 insertions(+), 4161 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 ld/testsuite/ld-mips-elf/reloc-pcrel-r6.d create mode 100644 ld/testsuite/ld-mips-elf/reloc-pcrel-r6.ld create mode 100644 ld/testsuite/ld-mips-elf/reloc-pcrel-r6.s 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