diff options
author | Marcus Shawcroft <mshawcroft@sourceware.org> | 2013-02-04 12:57:44 +0000 |
---|---|---|
committer | Marcus Shawcroft <mshawcroft@sourceware.org> | 2013-02-04 12:57:44 +0000 |
commit | cf0dbd6fe7b21f961021ddc9ba9105cbacfbdc90 (patch) | |
tree | 96d83d1f1ca8d769f1ddbd2cc8451061b2e6c821 /gdb/Makefile.in | |
parent | 1ae3db1961c057cfb1455827b7bc8f930f583c24 (diff) | |
download | gdb-cf0dbd6fe7b21f961021ddc9ba9105cbacfbdc90.zip gdb-cf0dbd6fe7b21f961021ddc9ba9105cbacfbdc90.tar.gz gdb-cf0dbd6fe7b21f961021ddc9ba9105cbacfbdc90.tar.bz2 |
Adding aarch64-newlib-tdep support.
* aarch64-newlib-tdep.c: New file.
* configure.tgt: Add aarch64-newlib-tdep.o to gdb_target_obs of
aarch64*-*-elf.
* defs.h (enum gdb_osabi): Add GDB_OSABI_NEWLIB.
* Makefile.in (ALL_64_TARGET_OBS): Add aarch64-newlib-tdep.o.
(ALLDEPFILES): Add aarch64-newlib-tdep.c.
* osabi.c (gdb_osabi_names): Add "Newlib".
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 2a0e4ac..0d834ac 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -521,7 +521,7 @@ TARGET_OBS = @TARGET_OBS@ # All target-dependent objects files that require 64-bit CORE_ADDR # (used with --enable-targets=all --enable-64-bit-bfd). ALL_64_TARGET_OBS = \ - aarch64-tdep.o aarch64-linux-tdep.o \ + aarch64-tdep.o aarch64-linux-tdep.o aarch64-newlib-tdep.o \ alphabsd-tdep.o alphafbsd-tdep.o alpha-linux-tdep.o alpha-mdebug-tdep.o \ alphanbsd-tdep.o alphaobsd-tdep.o alpha-osf1-tdep.o alpha-tdep.o \ amd64fbsd-tdep.o amd64-darwin-tdep.o amd64-dicos-tdep.o \ @@ -1421,7 +1421,7 @@ force_update: MAKEOVERRIDES= ALLDEPFILES = \ - aarch64-tdep.c aarch64-linux-tdep.c \ + aarch64-tdep.c aarch64-linux-tdep.c aarch64-newlib-tdep.c \ aix-thread.c \ alpha-nat.c alphabsd-nat.c alpha-linux-nat.c \ alpha-tdep.c alpha-mdebug-tdep.c \ |