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-aarch64-next-allmodconfig in repository toolchain/ci/binutils-gdb.
from 5f63875b30 Fix failure on powerpc 32-bit only targets adds eb41253a15 Fix typo in gdb/NEWS adds 58db964680 Automatic date update in version.in adds 0eb32b6e1d XCOFF linker segmentation fault adds a7b34aba62 Obsolete tic30-aout, and linker segmentation faults adds 586338b839 HPPA64 linker segmentation faults adds c83004d526 m68k linker segmentation faults adds a0f6fd217f LM32 linker segmentation faults adds 28fbeab806 Alpha-linux linker segmentation fault adds 94667ab146 Microblaze linker segmentation fault adds 0f4a61b420 COFF linker segmentation faults adds 766f883622 Suppress SIGTTOU when handling errors adds 65f381e729 aarch64: fix variant_pcs ld tests adds 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 new a2f4b66c9e x86: Add CheckRegSize to AVX512_BF16 instructions with Disp8ShiftVL
The 22 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 +++- bfd/ChangeLog | 58 + bfd/aout-tic30.c | 98 +- bfd/cofflink.c | 2 +- bfd/config.bfd | 1 + bfd/dwarf2.c | 8 +- bfd/elf32-lm32.c | 3 +- bfd/elf32-m68k.c | 35 +- bfd/elf32-microblaze.c | 5 +- bfd/elf64-alpha.c | 2 +- bfd/elf64-hppa.c | 22 +- bfd/elflink.c | 3 +- bfd/version.h | 2 +- bfd/xcofflink.c | 12 +- 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 +- 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 | 25 + gdb/NEWS | 2 +- gdb/ada-exp.y | 13 - gdb/ada-lang.c | 180 +- gdb/ada-lang.h | 3 - gdb/event-top.c | 2 +- gdb/inflow.c | 29 - gdb/inflow.h | 31 + gdb/ser-unix.c | 4 + gdb/top.c | 2 +- include/ChangeLog | 158 + include/ctf-api.h | 387 ++ include/ctf.h | 564 ++ ld/ChangeLog | 12 + ld/emultempl/pe.em | 3 +- ld/emultempl/pep.em | 3 +- ld/testsuite/ld-aarch64/variant_pcs-now.d | 77 +- ld/testsuite/ld-aarch64/variant_pcs-shared.d | 77 +- 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 + opcodes/ChangeLog | 7 + opcodes/i386-opc.tbl | 4 +- opcodes/i386-tbl.h | 4 +- 79 files changed, 20108 insertions(+), 448 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