diff options
author | Chris Demetriou <cgd@google.com> | 2003-08-25 22:56:09 +0000 |
---|---|---|
committer | Chris Demetriou <cgd@google.com> | 2003-08-25 22:56:09 +0000 |
commit | aede7613bfd25d3b4f475719140d48275bc6464b (patch) | |
tree | c49b1207c78282fea755a5588dbbc7498be0d9a4 | |
parent | 43c3a82e5ba7161808fcbd2e9ba570ee18170fa3 (diff) | |
download | gdb-aede7613bfd25d3b4f475719140d48275bc6464b.zip gdb-aede7613bfd25d3b4f475719140d48275bc6464b.tar.gz gdb-aede7613bfd25d3b4f475719140d48275bc6464b.tar.bz2 |
2003-08-25 Chris Demetriou <cgd@broadcom.com>
* configure.tgt: Document need for special "mipsisa64" handling.
(mipsisa64*-*-linux64): Handle as target linux64.
(mipsisa64*-*-*): Handle as target embed64.
-rw-r--r-- | gdb/ChangeLog | 6 | ||||
-rw-r--r-- | gdb/configure.tgt | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 67a2d05..5e5919c 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2003-08-25 Chris Demetriou <cgd@broadcom.com> + + * configure.tgt: Document need for special "mipsisa64" handling. + (mipsisa64*-*-linux64): Handle as target linux64. + (mipsisa64*-*-*): Handle as target embed64. + 2003-08-18 Michael Chastain <mec@shout.net> * PROBLEMS: Document pr gdb/1322, the Java anonymous diff --git a/gdb/configure.tgt b/gdb/configure.tgt index f11f0ee..48b516f 100644 --- a/gdb/configure.tgt +++ b/gdb/configure.tgt @@ -143,6 +143,12 @@ m68*-*-sysv4*) gdb_target=m68kv4 ;; m68*-*-vxworks*) gdb_target=vxworks68 ;; mcore*-*-*) gdb_target=mcore ;; + +# "mipsisa64" targets are 64-bit MIPS, MIPS64 ISA. They need these +# special cases because otherwise they (obviously) are not matched by +# the "mips64" target cases, and would therefore be treated as 32-bit. +mipsisa64*-*-linux*) gdb_target=linux64 ;; +mipsisa64*-*-*) gdb_target=embed64 ;; mips64*-big-*) gdb_target=mips64 ;; mips*-big-*) gdb_target=mips ;; mips*-dec-*) gdb_target=mips ;; |