From 257e02d836ce102dfadee77b54c6d34059007065 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Thu, 29 Oct 2020 08:47:16 -0600 Subject: Add x86_64 ravenscar support Support for x86_64 ravenscar was recently added to the Ada runtime. This patch updates gdb to follow. As this is Ada-specific, and was reviewed internally by Joel, I am checking it in. 2020-11-02 Tom Tromey * Makefile.in (ALL_64_TARGET_OBS): Add amd64-ravenscar-thread.o. (ALLDEPFILES): Add amd64-ravenscar-thread.c. (HFILES_NO_SRCDIR): Add amd64-ravenscar-thread.h. * amd64-ravenscar-thread.c: New file. * amd64-ravenscar-thread.h: New file. * amd64-tdep.c (amd64_init_abi): Register ravenscar ops. * configure.tgt (amd64_tobjs): Add ravenscar objects. --- gdb/configure.tgt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'gdb/configure.tgt') diff --git a/gdb/configure.tgt b/gdb/configure.tgt index d865ecd..6e03983 100644 --- a/gdb/configure.tgt +++ b/gdb/configure.tgt @@ -39,7 +39,8 @@ esac x86_tobjs="x86-tdep.o" i386_tobjs="i386-tdep.o arch/i386.o i387-tdep.o ${x86_tobjs}" -amd64_tobjs="amd64-tdep.o arch/amd64.o ${x86_tobjs}" +amd64_tobjs="ravenscar-thread.o amd64-ravenscar-thread.o \ + amd64-tdep.o arch/amd64.o ${x86_tobjs}" # Here are three sections to get a list of target specific object # files according to target triplet $TARG. -- cgit v1.1