From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 22222 invoked by alias); 8 Aug 2002 15:39:09 -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 22214 invoked from network); 8 Aug 2002 15:39:08 -0000 Received: from unknown (HELO localhost.redhat.com) (216.138.202.10) by sources.redhat.com with SMTP; 8 Aug 2002 15:39:08 -0000 Received: from ges.redhat.com (localhost [127.0.0.1]) by localhost.redhat.com (Postfix) with ESMTP id 3E07A3F6A; Thu, 8 Aug 2002 11:39:07 -0400 (EDT) Message-ID: <3D52909B.3020304@ges.redhat.com> Date: Thu, 08 Aug 2002 08:39:00 -0000 From: Andrew Cagney User-Agent: Mozilla/5.0 (X11; U; NetBSD macppc; en-US; rv:1.0.0) Gecko/20020802 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="------------070603060108050205040900" X-SW-Source: 2002-08/txt/msg00184.txt.bz2 This is a multi-part message in MIME format. --------------070603060108050205040900 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-length: 329 > 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. Thanks, I've so far checked in the attached. More to come :-) Andrew --------------070603060108050205040900 Content-Type: text/plain; name="diffs" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="diffs" Content-length: 1824 2002-08-08 Andrew Cagney * configure.tgt: Replace powerpc-*-sysv*, powerpc-*-elf*, powerpcle-*-eabi*, powerpcle-*-sysv* and powerpcle-*-elf* with powerpc*-*-*. * MAINTAINERS: Remove redundant rs6000-ibm-aix4.1 target. Index: MAINTAINERS =================================================================== RCS file: /cvs/src/src/gdb/MAINTAINERS,v retrieving revision 1.192 diff -u -r1.192 MAINTAINERS --- MAINTAINERS 6 Aug 2002 14:12:46 -0000 1.192 +++ MAINTAINERS 8 Aug 2002 15:06:02 -0000 @@ -136,9 +136,6 @@ powerpc --target=powerpc-eabi ,-Werror Kevin Buettner kevinb@redhat.com - rs6000 --target=rs6000-ibm-aix4.1 ,-Werror - (see rs6000 native and ppc target) - s390 --target=s390-linux ,-Werror (contact DJ Barrow djbarrow@de.ibm.com) Index: configure.tgt =================================================================== RCS file: /cvs/src/src/gdb/configure.tgt,v retrieving revision 1.76 diff -u -r1.76 configure.tgt --- configure.tgt 6 Aug 2002 14:12:46 -0000 1.76 +++ configure.tgt 8 Aug 2002 15:06:02 -0000 @@ -218,22 +218,15 @@ powerpc-*-netbsd*) gdb_target=nbsd ;; powerpc-*-aix*) gdb_target=aix ;; -powerpc-*-eabi* | powerpc-*-sysv* | powerpc-*-elf*) - if test -f ../sim/ppc/Makefile; then - gdb_target=ppc-sim - else - gdb_target=ppc-eabi - fi ;; -powerpcle-*-eabi* | powerpcle-*-sysv* | powerpcle-*-elf*) - if test -f ../sim/ppc/Makefile; then - gdb_target=ppcle-sim - else - gdb_target=ppcle-eabi - fi ;; powerpc-*-linux*) gdb_target=linux build_gdbserver=yes ;; powerpc-*-vxworks*) gdb_target=vxworks ;; +powerpc*-*-*) if test -f ../sim/ppc/Makefile; then + gdb_target=ppc-sim + else + gdb_target=ppc-eabi + fi ;; rs6000-*-lynxos*) gdb_target=rs6000lynx ;; rs6000-*-aix4*) gdb_target=aix4 ;; --------------070603060108050205040900--