diff options
author | Tom Tromey <tromey@adacore.com> | 2020-10-29 08:47:16 -0600 |
---|---|---|
committer | Tom Tromey <tromey@adacore.com> | 2020-11-02 12:10:51 -0700 |
commit | 257e02d836ce102dfadee77b54c6d34059007065 (patch) | |
tree | e81ee0e58d1e107e643b91726bd7100ef0cc48a0 /gdb/Makefile.in | |
parent | 74d877e5221f3459aa9f4f9354194b714d306e18 (diff) | |
download | gdb-257e02d836ce102dfadee77b54c6d34059007065.zip gdb-257e02d836ce102dfadee77b54c6d34059007065.tar.gz gdb-257e02d836ce102dfadee77b54c6d34059007065.tar.bz2 |
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 <tromey@adacore.com>
* 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.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index b3be21b..c46935e 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -687,6 +687,7 @@ ALL_64_TARGET_OBS = \ amd64-linux-tdep.o \ amd64-netbsd-tdep.o \ amd64-obsd-tdep.o \ + amd64-ravenscar-thread.o \ amd64-sol2-tdep.o \ amd64-tdep.o \ amd64-windows-tdep.o \ @@ -1219,6 +1220,7 @@ HFILES_NO_SRCDIR = \ amd64-darwin-tdep.h \ amd64-linux-tdep.h \ amd64-nat.h \ + amd64-ravenscar-thread.h \ amd64-tdep.h \ annotate.h \ arc-tdep.h \ @@ -2139,6 +2141,7 @@ ALLDEPFILES = \ amd64-netbsd-tdep.c \ amd64-obsd-nat.c \ amd64-obsd-tdep.c \ + amd64-ravenscar-thread.c \ amd64-sol2-tdep.c \ amd64-tdep.c \ arc-tdep.c \ |