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-mainline-allnoconfig in repository toolchain/ci/binutils-gdb.
from b1f1b4decb Automatic date update in version.in adds 21b0982c77 gdb/testsuite: Move helper function into lib/dwarf.exp adds 10ca4b042d readelf: Consolidate --syms --use-dynamic with --dyn-syms adds c1a66c0629 [gdb] Expand symbolless symtabs using maint expand-symtabs adds 194d088fb1 [gdb] Fix missing symtab includes adds fa1477dc34 Fixes for the magic number used in PDP11 AOUT binaries. adds 645f43a80c readelf memory leaks processing mips adds 34ca55313b The assembler only supports 32-bit stabs. So set sh_entsize [...] adds 06ca5dd49a Implement IP_STAT+IP_STATUS (aliases of the same format) on NetBSD adds f717994fe8 [PATCH v2 2/2] coff-go32: support extended relocations adds 6a05414145 Automatic date update in version.in new c98a4545dc Re: readelf: Consolidate --syms --use-dynamic with --dyn-syms
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: bfd/ChangeLog | 39 + bfd/coff-go32.c | 134 +++ bfd/coff-stgo32.c | 30 +- bfd/coffcode.h | 70 +- bfd/cofflink.c | 4 +- bfd/coffswap.h | 2 + bfd/elf.c | 4 +- bfd/libaout.h | 3 +- bfd/libcoff-in.h | 6 +- bfd/libcoff.h | 6 +- bfd/pdp11.c | 62 +- bfd/version.h | 2 +- binutils/ChangeLog | 37 + binutils/readelf.c | 1059 ++++++++++---------- gdb/ChangeLog | 37 + gdb/dwarf2/read.c | 69 +- gdb/linespec.c | 2 +- gdb/nbsd-nat.c | 103 ++ gdb/psympriv.h | 22 +- gdb/psymtab.c | 10 +- gdb/symfile-debug.c | 2 +- gdb/symfile.c | 2 +- gdb/symfile.h | 13 +- gdb/symmisc.c | 8 +- gdb/symtab.c | 2 +- gdb/testsuite/ChangeLog | 22 + .../gdb.base/maint-expand-symbols-header-file.c | 26 + .../gdb.base/maint-expand-symbols-header-file.exp | 46 + .../gdb.base/maint-expand-symbols-header-file.h | 22 + .../gdb.dwarf2/dw2-inline-many-frames.exp | 14 - gdb/testsuite/gdb.dwarf2/dw2-inline-small-func.exp | 16 +- gdb/testsuite/gdb.dwarf2/dw2-is-stmt-2.exp | 14 - gdb/testsuite/gdb.dwarf2/dw2-is-stmt.exp | 14 - gdb/testsuite/gdb.dwarf2/dw2-symtab-includes.exp | 80 ++ gdb/testsuite/lib/dwarf.exp | 16 + include/ChangeLog | 5 + include/aout/aout64.h | 5 +- ld/ChangeLog | 40 + ld/NEWS | 4 + ld/emulparams/pdp11.sh | 3 +- ld/emultempl/pdp11.em | 132 +++ ld/gen-doc.texi | 1 + ld/ld.texi | 70 +- ld/lexsup.c | 1 + ld/scripttempl/pdp11.sc | 56 ++ ld/testsuite/ld-arm/armthumb-lib.sym | 29 +- ld/testsuite/ld-arm/farcall-mixed-app.sym | 29 +- ld/testsuite/ld-arm/farcall-mixed-app2.sym | 29 +- ld/testsuite/ld-arm/fdpic-main-m.sym | 27 +- ld/testsuite/ld-arm/fdpic-main.sym | 27 +- ld/testsuite/ld-arm/fdpic-shared-m.sym | 29 +- ld/testsuite/ld-arm/fdpic-shared.sym | 29 +- ld/testsuite/ld-arm/mixed-app.sym | 29 +- ld/testsuite/ld-arm/mixed-lib.sym | 29 +- ld/testsuite/ld-arm/preempt-app.sym | 27 +- ld/testsuite/ld-elf/hash.d | 8 +- ld/testsuite/ld-elf/pr13195.d | 2 +- ld/testsuite/ld-elfvsb/hidden2.d | 4 +- ld/testsuite/ld-mips-elf/hash2.d | 8 +- ld/testsuite/ld-pdp11/imagic.d | 12 + ld/testsuite/ld-pdp11/imagicz.d | 12 + ld/testsuite/ld-pdp11/nmagic.d | 11 + ld/testsuite/ld-pdp11/omagic.d | 12 + ld/testsuite/ld-pdp11/pdp11.exp | 33 + ld/testsuite/ld-pdp11/sections.s | 13 + 65 files changed, 1901 insertions(+), 813 deletions(-) create mode 100644 gdb/testsuite/gdb.base/maint-expand-symbols-header-file.c create mode 100644 gdb/testsuite/gdb.base/maint-expand-symbols-header-file.exp create mode 100644 gdb/testsuite/gdb.base/maint-expand-symbols-header-file.h create mode 100644 gdb/testsuite/gdb.dwarf2/dw2-symtab-includes.exp create mode 100644 ld/emultempl/pdp11.em create mode 100644 ld/scripttempl/pdp11.sc create mode 100644 ld/testsuite/ld-pdp11/imagic.d create mode 100644 ld/testsuite/ld-pdp11/imagicz.d create mode 100644 ld/testsuite/ld-pdp11/nmagic.d create mode 100644 ld/testsuite/ld-pdp11/omagic.d create mode 100644 ld/testsuite/ld-pdp11/pdp11.exp create mode 100644 ld/testsuite/ld-pdp11/sections.s