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-lts-defconfig in repository toolchain/ci/binutils-gdb.
from 4b3ecb3b91 PR25675: SIGSEGV in bfd_octets_per_byte adds 2f89101fe8 [gdb/testsuite] Add cache_verify option for gdb_caching_procs adds cb9b645d3e gdb: recognize 64 bits Windows executables as Cygwin osabi adds fe4b2ee65c gdb: move enum gdb_osabi to osabi.h adds 053205cc40 gdb: add Windows OS ABI adds 7a1998dffb gdb: rename i386-cygwin-tdep.c to i386-windows-tdep.c adds 5982a56ab9 gdb: rename content of i386-windows-tdep.c, cygwin to windows adds 8db5243724 gdb: select "Cygwin" OS ABI for Cygwin binaries adds 30efb6c7af gdb: define builtin long type to be 64 bits on amd64 Cygwin adds 67430cd00a Fix dwarf2_name caching bug adds 817a758576 arc: Migrate to new target features adds 771dd3a88b Initialize base_value in pascal_object_print_value adds 7325b16ba4 [gdb/testsuite] Give up after consecutive timeouts in comple [...] adds 589902954d [gdb] Skip imports of c++ CUs new a2ecbe9fb7 Rewrite nbsd_nat_target::pid_to_exec_file to sysctl(3) new 9e38d61910 Include missing header to get missing declarations
The 2 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: gdb/ChangeLog | 123 ++++++++++++++++++++++++ gdb/Makefile.in | 6 +- gdb/amd64-bsd-nat.c | 1 + gdb/amd64-windows-tdep.c | 41 +++++++- gdb/arc-tdep.c | 59 ++++++++---- gdb/arc-tdep.h | 4 + gdb/arch/arc.c | 58 +++++++++++ gdb/arch/arc.h | 48 +++++++++ gdb/configure.tgt | 12 +-- gdb/defs.h | 31 ------ gdb/dwarf2/read.c | 40 ++++++-- gdb/dwarf2/read.h | 6 ++ gdb/features/Makefile | 6 +- gdb/features/arc-arcompact.c | 74 -------------- gdb/features/arc-arcompact.xml | 85 ---------------- gdb/features/arc-v2.c | 78 --------------- gdb/features/arc-v2.xml | 92 ------------------ gdb/features/arc/aux-arcompact.c | 31 ++++++ gdb/features/arc/aux-arcompact.xml | 28 ++++++ gdb/features/arc/aux-v2.c | 35 +++++++ gdb/features/arc/aux-v2.xml | 32 ++++++ gdb/features/arc/core-arcompact.c | 47 +++++++++ gdb/features/arc/core-arcompact.xml | 58 +++++++++++ gdb/features/arc/core-v2.c | 47 +++++++++ gdb/features/arc/core-v2.xml | 61 ++++++++++++ gdb/gdbarch.h | 1 + gdb/gdbarch.sh | 1 + gdb/{i386-cygwin-tdep.c => i386-windows-tdep.c} | 45 ++++++--- gdb/nbsd-nat.c | 22 ++--- gdb/osabi.c | 1 + gdb/osabi.h | 32 ++++++ gdb/p-valprint.c | 1 + gdb/target-descriptions.c | 3 +- gdb/testsuite/ChangeLog | 5 + gdb/testsuite/lib/cache.exp | 37 ++++++- gdb/testsuite/lib/completion-support.exp | 27 +++++- gdb/windows-tdep.c | 99 +++++++++++++++++++ gdb/windows-tdep.h | 6 ++ 38 files changed, 945 insertions(+), 438 deletions(-) create mode 100644 gdb/arch/arc.c create mode 100644 gdb/arch/arc.h delete mode 100644 gdb/features/arc-arcompact.c delete mode 100644 gdb/features/arc-arcompact.xml delete mode 100644 gdb/features/arc-v2.c delete mode 100644 gdb/features/arc-v2.xml create mode 100644 gdb/features/arc/aux-arcompact.c create mode 100644 gdb/features/arc/aux-arcompact.xml create mode 100644 gdb/features/arc/aux-v2.c create mode 100644 gdb/features/arc/aux-v2.xml create mode 100644 gdb/features/arc/core-arcompact.c create mode 100644 gdb/features/arc/core-arcompact.xml create mode 100644 gdb/features/arc/core-v2.c create mode 100644 gdb/features/arc/core-v2.xml rename gdb/{i386-cygwin-tdep.c => i386-windows-tdep.c} (83%)