diff options
author | Kevin Buettner <kevinb@redhat.com> | 2011-01-24 21:34:19 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2011-01-24 21:34:19 +0000 |
commit | 314d366acd62a3de1ff8fff788d5b369c2f2d36c (patch) | |
tree | 74900d43c782943f1d9a60242f2a043381c6a65e | |
parent | a491d753e80c10865e5fc704377ae41d9421bfe5 (diff) | |
download | gdb-314d366acd62a3de1ff8fff788d5b369c2f2d36c.zip gdb-314d366acd62a3de1ff8fff788d5b369c2f2d36c.tar.gz gdb-314d366acd62a3de1ff8fff788d5b369c2f2d36c.tar.bz2 |
* configure.tgt (mips*-*-elf): New; just like mips*-*-*, but
with remote-mips.o added to gdb_target_obs.
* Makefile.in (ALL_TARGET_OBS): Add remote-mips.o.
-rw-r--r-- | gdb/ChangeLog | 6 | ||||
-rw-r--r-- | gdb/Makefile.in | 2 | ||||
-rw-r--r-- | gdb/configure.tgt | 5 |
3 files changed, 12 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index efa9c57..43d2956 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2011-01-24 Kevin Buettner <kevinb@redhat.com> + + * configure.tgt (mips*-*-elf): New; just like mips*-*-*, but + with remote-mips.o added to gdb_target_obs. + * Makefile.in (ALL_TARGET_OBS): Add remote-mips.o. + 2011-01-24 Pedro Alves <pedro@codesourcery.com> * ada-valprint.c (val_print_packed_array_elements): Pass the diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 226faf6..36cc734 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -554,7 +554,7 @@ ALL_TARGET_OBS = \ solib-frv.o solib-irix.o solib-svr4.o solib-target.o \ solib-som.o solib-pa64.o solib-darwin.o \ dbug-rom.o dink32-rom.o ppcbug-rom.o m32r-rom.o dsrec.o monitor.o \ - remote-m32r-sdi.o \ + remote-m32r-sdi.o remote-mips.o \ xcoffread.o \ symfile-mem.o \ corelow.o \ diff --git a/gdb/configure.tgt b/gdb/configure.tgt index 380db32..7d017a9 100644 --- a/gdb/configure.tgt +++ b/gdb/configure.tgt @@ -371,6 +371,11 @@ mips64*-*-openbsd*) gdb_target_obs="mips-tdep.o mips64obsd-tdep.o \ corelow.o solib.o solib-svr4.o" ;; +mips*-*-elf) + # Target: MIPS ELF + gdb_target_obs="mips-tdep.o remote-mips.o" + gdb_sim=../sim/mips/libsim.a + ;; mips*-*-*) # Target: MIPS gdb_target_obs="mips-tdep.o" |