diff options
author | Andrew Cagney <cagney@redhat.com> | 2002-08-18 04:00:47 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2002-08-18 04:00:47 +0000 |
commit | 32089c7c021589daa17a6f2183af8555fa8d758f (patch) | |
tree | 34daa4c2f339aee35640a04ab47aa803107c5749 | |
parent | 23aadcd2229ed5d1d7dbde6282ad48ea0fcabcc2 (diff) | |
download | fsf-binutils-gdb-32089c7c021589daa17a6f2183af8555fa8d758f.zip fsf-binutils-gdb-32089c7c021589daa17a6f2183af8555fa8d758f.tar.gz fsf-binutils-gdb-32089c7c021589daa17a6f2183af8555fa8d758f.tar.bz2 |
2002-08-17 Andrew Cagney <ac131313@redhat.com>
* config/ia64/ia64.mt: New file.
* config/alpha/alpha.mt: New file.
* MAINTAINERS: Change the alpha target to alpha-elf and IA-64 to
ia64-linux-gnu. Mention that ia64-elf is broken.
* configure.tgt: Add alpha*-*-* and ia64*-*-* patterns.
-rw-r--r-- | gdb/ChangeLog | 8 | ||||
-rw-r--r-- | gdb/MAINTAINERS | 5 | ||||
-rw-r--r-- | gdb/config/alpha/alpha.mt | 2 | ||||
-rw-r--r-- | gdb/config/ia64/ia64.mt | 2 | ||||
-rw-r--r-- | gdb/configure.tgt | 2 |
5 files changed, 17 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 75d6405..8038b5c 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,11 @@ +2002-08-17 Andrew Cagney <ac131313@redhat.com> + + * config/ia64/ia64.mt: New file. + * config/alpha/alpha.mt: New file. + * MAINTAINERS: Change the alpha target to alpha-elf and IA-64 to + ia64-linux-gnu. Mention that ia64-elf is broken. + * configure.tgt: Add alpha*-*-* and ia64*-*-* patterns. + 2002-08-17 Mark Kettenis <kettenis@elgar.kettenis.dyndns.org> * i386-tdep.c (i386_svr4_init_abi, i386_nw_init_abi): Use diff --git a/gdb/MAINTAINERS b/gdb/MAINTAINERS index 0b4f553..6348a93 100644 --- a/gdb/MAINTAINERS +++ b/gdb/MAINTAINERS @@ -56,7 +56,7 @@ maintainer works with the native maintainer when resolving API issues. a29k Deleted. - alpha --target=alpha-dec-osf4.0a -Werror + alpha --target=alpha-elf -Werror Maintenance only arc (--target=arc-elf OBSOLETE) @@ -98,7 +98,8 @@ maintainer works with the native maintainer when resolving API issues. Maintenance only OBSOLETE candidate, not multi-arch - ia64 --target=ia64-linux ,-Werror + ia64 --target=ia64-linux-gnu ,-Werror + (--target=ia64-elf broken) Kevin Buettner kevinb@redhat.com m32r (--target=m32r-elf broken) diff --git a/gdb/config/alpha/alpha.mt b/gdb/config/alpha/alpha.mt new file mode 100644 index 0000000..dfff657 --- /dev/null +++ b/gdb/config/alpha/alpha.mt @@ -0,0 +1,2 @@ +TDEPFILES= alpha-tdep.o +TM_FILE= tm-alpha.h diff --git a/gdb/config/ia64/ia64.mt b/gdb/config/ia64/ia64.mt new file mode 100644 index 0000000..c0f85a4 --- /dev/null +++ b/gdb/config/ia64/ia64.mt @@ -0,0 +1,2 @@ +TDEPFILES= ia64-tdep.o +TM_FILE= tm-ia64.h diff --git a/gdb/configure.tgt b/gdb/configure.tgt index c50a370..eef88f6 100644 --- a/gdb/configure.tgt +++ b/gdb/configure.tgt @@ -42,6 +42,7 @@ alpha*-*-osf*) gdb_target=alpha-osf1 ;; alpha*-*-linux*) gdb_target=alpha-linux ;; alpha*-*-freebsd*) gdb_target=fbsd ;; alpha*-*-netbsd*) gdb_target=nbsd ;; +alpha*-*-*) gdb_target=alpha ;; # OBSOLETE arc-*-*) gdb_target=arc ;; @@ -133,6 +134,7 @@ ia64-*-aix*) gdb_target=aix ;; ia64-*-linux*) gdb_target=linux build_gdbserver=yes ;; +ia64*-*-*) gdb_target=ia64 ;; m32r-*-elf*) gdb_target=m32r ;; |