From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 18677 invoked by alias); 18 Aug 2002 03:44:46 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 18669 invoked from network); 18 Aug 2002 03:44:44 -0000 Received: from unknown (HELO localhost.redhat.com) (24.112.240.27) by sources.redhat.com with SMTP; 18 Aug 2002 03:44:44 -0000 Received: from ges.redhat.com (localhost [127.0.0.1]) by localhost.redhat.com (Postfix) with ESMTP id 656FA3CC6; Sat, 17 Aug 2002 23:44:12 -0400 (EDT) Message-ID: <3D5F180C.5040904@ges.redhat.com> Date: Sat, 17 Aug 2002 20:44:00 -0000 From: Andrew Cagney User-Agent: Mozilla/5.0 (X11; U; NetBSD macppc; en-US; rv:1.0.0) Gecko/20020810 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Kevin Buettner Cc: gdb-patches@sources.redhat.com Subject: Re: [patch/rfc] Rationalize Instruction Set Architecture targets References: <3D4F3784.9080500@ges.redhat.com> <1020806225310.ZM32224@localhost.localdomain> Content-Type: multipart/mixed; boundary="------------010607020108010607080108" X-SW-Source: 2002-08/txt/msg00494.txt.bz2 This is a multi-part message in MIME format. --------------010607020108010607080108 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-length: 314 > On Aug 5, 10:42pm, Andrew Cagney wrote: > > >> I'm not sure how to follow this through. I could commit it all as is, >> or incrementally has maintainers for specific targets (eg PPC/rs6000, >> i386) give an ok. > > > Okay on the parts I can okay. I've now also checked in the attached. enjoy, Andrew --------------010607020108010607080108 Content-Type: text/plain; name="diffs" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="diffs" Content-length: 2280 2002-08-17 Andrew Cagney * 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. Index: MAINTAINERS =================================================================== RCS file: /cvs/src/src/gdb/MAINTAINERS,v retrieving revision 1.193 diff -u -r1.193 MAINTAINERS --- MAINTAINERS 8 Aug 2002 15:37:29 -0000 1.193 +++ MAINTAINERS 18 Aug 2002 03:25:49 -0000 @@ -56,7 +56,7 @@ 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 @@ 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) Index: configure.tgt =================================================================== RCS file: /cvs/src/src/gdb/configure.tgt,v retrieving revision 1.78 diff -u -r1.78 configure.tgt --- configure.tgt 15 Aug 2002 22:51:40 -0000 1.78 +++ configure.tgt 18 Aug 2002 03:25:49 -0000 @@ -42,6 +42,7 @@ 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-*-linux*) gdb_target=linux build_gdbserver=yes ;; +ia64*-*-*) gdb_target=ia64 ;; m32r-*-elf*) gdb_target=m32r ;; Index: config/alpha/alpha.mt =================================================================== RCS file: config/alpha/alpha.mt diff -N config/alpha/alpha.mt --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ config/alpha/alpha.mt 18 Aug 2002 03:25:49 -0000 @@ -0,0 +1,2 @@ +TDEPFILES= alpha-tdep.o +TM_FILE= tm-alpha.h Index: config/ia64/ia64.mt =================================================================== RCS file: config/ia64/ia64.mt diff -N config/ia64/ia64.mt --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ config/ia64/ia64.mt 18 Aug 2002 03:25:49 -0000 @@ -0,0 +1,2 @@ +TDEPFILES= ia64-tdep.o +TM_FILE= tm-ia64.h --------------010607020108010607080108--