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-aarch64-build_cross in repository toolchain/ci/binutils-gdb.
from 3ad6c19423 bpf: simulator: correct div, mod insn semantics adds 47485a3161 Re: MSP430: Support relocations for subtract expressions in [...] adds 7671fe54f3 Automatic date update in version.in adds fb7331ae2b lto-18 test adds dfbee68088 PR26578, memory leak in parse_gnu_debugaltlink adds 1feede9b38 CSKY: Add FPUV3 instructions, which supported by ck860f. adds a2061b9f29 CSKY: Support option -mfloat-abi. adds 6a1ed9106f CSKY: Change mvtc and mulsw's ISA flag. adds 15a32af52f power10 on ppc32 adds 10556cdc8e Fix thinko in the code to check coff archive elements. adds 1b788fb6e9 Fix latent bug in ada-lang.c:remove_extra_symbols adds a3a08c5a2f Automatic date update in version.in adds 23bef3fea3 sprintf arg overlaps destination adds 0332f66274 Fix compile time warnings when building for the CSKY target [...] adds 36dcb3a97d Re: lto-18 test adds 36efe0aea5 Re: PR26580, Size and alignment of commons vs as-needed shared lib adds 525a0aa301 CSKY: Add new arches while refine the cpu option process. adds 79c8d443b1 CSKY: Add L2Cache instructions for CK860. adds 89ce8eab23 CSKY: Enable extend lrw by default for CK802, CK803 and CK860. adds 7ad578807a Stop symbols generated by the annobin gcc plugin from breaki [...] adds 48c9b43332 Add handle_eintr to wrap EINTR handling in syscalls adds 99cf6da66a Register a placeholder for NetBSD shared functions in gdb/nat adds 70b67307e9 Build nat/netbsd-nat.o for the NetBSD native target adds 330662f684 Add netbsd_nat::pid_to_exec_file adds c489f8c6e6 Add gdb/nat common functions for listing threads adds feedfcc773 Add netbsd_nat::enable_proc_events in gdb/nat adds 1ccb2c170c Add a common utility function to read and write siginfo_t in [...] adds f404573e4f Avoid double free in startup_inferior adds cf4ac4be12 Switch local native code to gdb/nat shared functions adds 62ba50486f Add minimal and functional NetBSD/amd64 gdbserver adds 918619e5e5 PR26597, FAIL: gdb.dlang/demangle.exp: _D8demangle4testFI5identZv adds 93d49941ed ld: Add more tests for --as-needed adds c7cd291722 aarch64: Return an error on conditional branch to an undefin [...]
No new revisions were added by this update.
Summary of changes: bfd/ChangeLog | 19 +- bfd/cofflink.c | 8 +- bfd/elfnn-aarch64.c | 37 +- bfd/libbfd-in.h | 2 + bfd/libbfd.h | 2 +- bfd/version.h | 2 +- binutils/ChangeLog | 6 + binutils/dwarf.c | 9 +- gas/ChangeLog | 84 ++ gas/config/tc-csky.c | 863 ++++++++--- gas/config/tc-ppc.c | 3 +- gas/testsuite/gas/csky/cskyv2_ck860.d | 2 +- gdb/ChangeLog | 58 + gdb/ada-lang.c | 4 +- gdb/configure.nat | 2 +- gdb/nat/fork-inferior.c | 5 +- gdb/nat/netbsd-nat.c | 213 +++ gdb/nat/netbsd-nat.h | 72 + gdb/nbsd-nat.c | 147 +- gdb/testsuite/ChangeLog | 5 + gdb/testsuite/gdb.dlang/demangle.exp | 4 +- gdbserver/ChangeLog | 9 + gdbserver/Makefile.in | 3 + gdbserver/configure.srv | 6 + gdbserver/netbsd-amd64-low.cc | 187 +++ gdbserver/netbsd-low.cc | 1327 +++++++++++++++++ gdbserver/netbsd-low.h | 154 ++ gdbsupport/ChangeLog | 4 + gdbsupport/eintr.h | 67 + include/ChangeLog | 19 + include/opcode/csky.h | 3 + ld/ChangeLog | 35 + ld/testsuite/ld-aarch64/emit-relocs-560.d | 7 +- ld/testsuite/ld-elf/pr26580-2.sd | 2 +- ld/testsuite/ld-elf/pr26590.err | 3 + ld/testsuite/ld-elf/pr26590a.c | 10 + ld/testsuite/ld-elf/pr26590b.c | 10 + ld/testsuite/ld-elf/pr26590c.c | 11 + ld/testsuite/ld-elf/pr26590d.c | 1 + ld/testsuite/ld-elf/shared.exp | 54 + ld/testsuite/ld-plugin/lto-18.out | 1 + ld/testsuite/ld-plugin/lto-18a.c | 22 + ld/testsuite/ld-plugin/lto-18b.c | 8 + ld/testsuite/ld-plugin/lto-18c.c | 8 + ld/testsuite/ld-plugin/lto-18d.c | 1 + ld/testsuite/ld-plugin/lto.exp | 39 +- opcodes/ChangeLog | 51 + opcodes/csky-dis.c | 74 +- opcodes/csky-opc.h | 2270 +++++++++++++++++++++++++++-- opcodes/ppc-dis.c | 24 + 50 files changed, 5468 insertions(+), 489 deletions(-) create mode 100644 gdb/nat/netbsd-nat.c create mode 100644 gdb/nat/netbsd-nat.h create mode 100644 gdbserver/netbsd-amd64-low.cc create mode 100644 gdbserver/netbsd-low.cc create mode 100644 gdbserver/netbsd-low.h create mode 100644 gdbsupport/eintr.h create mode 100644 ld/testsuite/ld-elf/pr26590.err create mode 100644 ld/testsuite/ld-elf/pr26590a.c create mode 100644 ld/testsuite/ld-elf/pr26590b.c create mode 100644 ld/testsuite/ld-elf/pr26590c.c create mode 100644 ld/testsuite/ld-elf/pr26590d.c create mode 100644 ld/testsuite/ld-plugin/lto-18.out create mode 100644 ld/testsuite/ld-plugin/lto-18a.c create mode 100644 ld/testsuite/ld-plugin/lto-18b.c create mode 100644 ld/testsuite/ld-plugin/lto-18c.c create mode 100644 ld/testsuite/ld-plugin/lto-18d.c