This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gnu/gnu-master-aarch64-check_binutils in repository toolchain/ci/binutils-gdb.
from 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 adds 019989fdf1 Automatic date update in version.in adds 844be3f240 CTF: set up debug info for function arguments adds dd99cf0c58 CTF: add all members of an enum type to psymtab adds b0a8c2ff9c Make valgrind tests more robust by adding --wait=1 to vgdb i [...] adds 8c0546e928 elf/x86-64: Subtract __ImageBase for R_AMD64_IMAGEBASE adds 4444f40757 Micro-optimize abbrev reading and storage adds c2a62a3d88 Create new file dwarf2/sect-names.h adds fbedd54644 Change section_is_p to a method on dwarf2_section_names adds a7308ce01e Avoid crash on missing dwz file adds 1803565556 Include scoped_fd.h in debuginfod-support.h adds 9938d15a01 Move dwarf2_get_dwz_file to dwarf2/dwz.h adds 01573d7360 Fix build bug in ada-lang.c adds 7ce45db691 Automatic date update in version.in
No new revisions were added by this update.
Summary of changes: bfd/ChangeLog | 50 ++++ bfd/bfd.c | 11 + bfd/coff-x86_64.c | 35 ++- bfd/dwarf2.c | 105 +++++--- bfd/elf-bfd.h | 8 + bfd/elf.c | 70 ++++++ bfd/elfnn-riscv.c | 84 ++++++- bfd/libbfd-in.h | 2 + bfd/libbfd.h | 2 + bfd/pe-x86_64.c | 32 ++- bfd/version.h | 2 +- binutils/ChangeLog | 17 ++ binutils/dwarf.c | 32 ++- binutils/readelf.c | 4 + gdb/ChangeLog | 147 ++++++++++++ gdb/Makefile.in | 6 + gdb/ada-lang.c | 4 +- gdb/configure | 3 +- gdb/configure.ac | 3 +- gdb/configure.tgt | 2 +- gdb/corelow.c | 24 ++ gdb/ctfread.c | 171 ++++++++----- gdb/debuginfod-support.h | 2 + gdb/dwarf2/abbrev.c | 71 ++---- gdb/dwarf2/abbrev.h | 42 ++-- gdb/dwarf2/dwz.c | 242 +++++++++++++++++++ gdb/dwarf2/dwz.h | 11 + gdb/dwarf2/macro.c | 6 +- gdb/dwarf2/read.c | 370 +++++------------------------ gdb/dwarf2/read.h | 6 - gdb/dwarf2/sect-names.h | 78 ++++++ 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/symfile.h | 46 +--- gdb/testsuite/ChangeLog | 14 ++ gdb/testsuite/gdb.base/ctf-ptype.exp | 19 +- gdb/testsuite/gdb.dwarf2/dwznolink.exp | 60 +++++ gdb/testsuite/lib/dwarf.exp | 4 +- gdb/testsuite/lib/valgrind.exp | 2 +- gdb/xcoffread.c | 1 + include/ChangeLog | 10 + include/elf/common.h | 6 + ld/ChangeLog | 18 ++ ld/emultempl/elf.em | 2 +- ld/ldelf.c | 8 + ld/ldelf.h | 1 + ld/testsuite/ld-x86-64/pe-x86-64-1.od | 1 + ld/testsuite/ld-x86-64/pe-x86-64-2.od | 1 + ld/testsuite/ld-x86-64/pe-x86-64-3.od | 1 + ld/testsuite/ld-x86-64/pe-x86-64-4.od | 1 + ld/testsuite/ld-x86-64/pe-x86-64-5.od | 1 + ld/testsuite/ld-x86-64/pe-x86-64-5.rd | 3 +- ld/testsuite/ld-x86-64/pe-x86-64-6.obj.bz2 | Bin 0 -> 1366 bytes ld/testsuite/ld-x86-64/pe-x86-64-6.od | 91 +++++++ ld/testsuite/ld-x86-64/pe-x86-64.exp | 9 + 64 files changed, 1973 insertions(+), 831 deletions(-) create mode 100644 gdb/dwarf2/sect-names.h 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 gdb/testsuite/gdb.dwarf2/dwznolink.exp create mode 100644 ld/testsuite/ld-x86-64/pe-x86-64-6.obj.bz2 create mode 100644 ld/testsuite/ld-x86-64/pe-x86-64-6.od