This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_cross/gnu-master-arm-build_cross in repository toolchain/ci/binutils-gdb.
from 0b7733b665 binutils fails to compile on AIX due to mismatched declaration adds a2126563ea Automatic date update in version.in adds 168bb18858 GNU strip fails to set sh_link and sh_info on Solaris SPARC64 adds ca0e11aa4b Gate the displaying of non-debug sections in separate debugi [...] adds 1178743e4c Use "bool" in ada-lang.c adds 6fa7408d72 ld: don't generate base relocations in PE output for absolut [...] adds 6b5465b917 bfd: prune COFF/PE section flags setting adds d4e5db4e50 ld: adjust ld-scripts/map-address.* adds d1e93af64a gdb: set current thread in sparc_{fetch,collect}_inferior_re [...] adds 7a39bd53dc Automatic date update in version.in adds b01b5d9a0b Move x86_64 PE changes out of bfd_perform_relocation adds d296b73620 Fix the dislay of .debug_macro.dwo sections. adds 2017f38777 Add support for the DW_FORM_strx* forms to the BFD library. adds f3a5df7bd6 gdb: unify parts of the Linux and FreeBSD core dumping code adds b63a5e38ef bfd/binutils: support for gdb target descriptions in the core file adds 95ce627aeb gdb: write target description into core file adds 0897bb7d6d bfd/riscv: prepare to handle bare metal core dump creation adds fb8f3fc0c3 gdb/riscv: introduce bare metal core dump support adds db6092f3ae bfd/binutils: add support for RISC-V CSRs in core files adds d782d24b32 gdb/riscv: make riscv target description names global adds b2668f28ee gdb/riscv: write CSRs into baremetal core dumps
No new revisions were added by this update.
Summary of changes: bfd/ChangeLog | 48 ++++ bfd/coff-x86_64.c | 32 +-- bfd/coffcode.h | 15 +- bfd/dwarf2.c | 105 ++++--- bfd/elf-bfd.h | 4 + bfd/elf.c | 70 +++++ bfd/elf64-sparc.c | 20 ++ bfd/elfnn-riscv.c | 84 +++++- bfd/reloc.c | 26 +- bfd/version.h | 2 +- binutils/ChangeLog | 80 ++++++ binutils/NEWS | 24 ++ binutils/doc/binutils.texi | 30 +- binutils/dwarf.c | 35 ++- binutils/objcopy.c | 15 +- binutils/objdump.c | 12 + binutils/readelf.c | 391 +++++++++++++++++++++------ binutils/testsuite/binutils-all/compress.exp | 18 +- binutils/testsuite/binutils-all/objdump.WK2 | 2 +- binutils/testsuite/binutils-all/objdump.WK3 | 2 - binutils/testsuite/binutils-all/objdump.exp | 4 +- binutils/testsuite/binutils-all/readelf.exp | 5 +- binutils/testsuite/binutils-all/readelf.wKis | 2 - gdb/ChangeLog | 103 +++++++ gdb/Makefile.in | 6 + gdb/ada-lang.c | 20 +- gdb/configure | 3 +- gdb/configure.ac | 3 +- gdb/configure.tgt | 2 +- gdb/corelow.c | 24 ++ gdb/elf-none-tdep.c | 126 +++++++++ gdb/{gcore.h => elf-none-tdep.h} | 21 +- gdb/fbsd-tdep.c | 137 +--------- gdb/gcore-elf.c | 166 ++++++++++++ gdb/gcore-elf.h | 47 ++++ gdb/gcore.c | 21 ++ gdb/gcore.h | 9 + gdb/linux-tdep.c | 146 +--------- gdb/riscv-none-tdep.c | 173 ++++++++++++ gdb/riscv-tdep.c | 14 +- gdb/riscv-tdep.h | 3 + gdb/sparc-nat.c | 19 +- gdb/sparc-nat.h | 10 +- gdb/sparc-obsd-tdep.c | 7 + gdb/sparc-tdep.c | 6 + gdb/sparc64-linux-nat.c | 4 +- gdb/sparc64-obsd-tdep.c | 7 + include/ChangeLog | 10 + include/elf/common.h | 6 + ld/ChangeLog | 14 + ld/ldexp.c | 22 ++ ld/ldexp.h | 1 + ld/pe-dll.c | 12 +- ld/testsuite/ld-pe/pe.exp | 2 + ld/testsuite/ld-pe/reloc.d | 14 + ld/testsuite/ld-pe/reloc.s | 13 + ld/testsuite/ld-scripts/map-address.exp | 14 +- ld/testsuite/ld-scripts/map-address.t | 3 + 58 files changed, 1706 insertions(+), 508 deletions(-) create mode 100644 gdb/elf-none-tdep.c copy gdb/{gcore.h => elf-none-tdep.h} (62%) create mode 100644 gdb/gcore-elf.c create mode 100644 gdb/gcore-elf.h create mode 100644 gdb/riscv-none-tdep.c create mode 100644 ld/testsuite/ld-pe/reloc.d create mode 100644 ld/testsuite/ld-pe/reloc.s