From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1568 invoked by alias); 3 Aug 2002 20:36:01 -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 1555 invoked from network); 3 Aug 2002 20:35:59 -0000 Received: from unknown (HELO localhost.redhat.com) (24.112.240.27) by sources.redhat.com with SMTP; 3 Aug 2002 20:35:59 -0000 Received: from ges.redhat.com (localhost [127.0.0.1]) by localhost.redhat.com (Postfix) with ESMTP id DA1823D60 for ; Sat, 3 Aug 2002 16:35:58 -0400 (EDT) Message-ID: <3D4C3EAE.30207@ges.redhat.com> Date: Sat, 03 Aug 2002 13:36: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: gdb-patches@sources.redhat.com Subject: [rfa/i386] Consolidate i386 targets Content-Type: multipart/mixed; boundary="------------060704050007000908090001" X-SW-Source: 2002-08/txt/msg00068.txt.bz2 This is a multi-part message in MIME format. --------------060704050007000908090001 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-length: 305 Hello, This patch replaces a number of explicit i386 (-aout, -coff, -elf, -pe) targets with a generic ``i386-*'' pattern. It then updates the MAINTAINERS file so that only one i386 target is listed or building: i386-elf. This should cut down on the number of targets that need building. ok? Andrew --------------060704050007000908090001 Content-Type: text/plain; name="diffs" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="diffs" Content-length: 1994 2002-08-03 Andrew Cagney * configure.tgt: Replace i[3456]86-*-pe*, i[3456]86-*-aout*, i[3456]86-*-coff* and i[3456]86-*-elf* with catch all i[3456]86-*. * MAINTAINERS: Drop i386-aout and i586-pc-msdosdjgpp from target list. Index: MAINTAINERS =================================================================== RCS file: /cvs/src/src/gdb/MAINTAINERS,v retrieving revision 1.191 diff -u -r1.191 MAINTAINERS --- MAINTAINERS 24 Jul 2002 23:51:35 -0000 1.191 +++ MAINTAINERS 3 Aug 2002 20:30:55 -0000 @@ -80,9 +80,6 @@ d30v (--target=d30v-elf OBSOLETE) - djgpp --target=i586-pc-msdosdjgpp ,-Werror - (See native and host) - fr30 (--target=fr30-elf OBSOLETE) h8300 --target=h8300hms -Werror @@ -93,7 +90,7 @@ Maintenance only Not multi-arch, work in progress - i386 --target=i386-elf,i386-aout ,-Werror + i386 --target=i386-elf ,-Werror Mark Kettenis kettenis@gnu.org i960 --target=i960-coff ,-Werror Index: configure.tgt =================================================================== RCS file: /cvs/src/src/gdb/configure.tgt,v retrieving revision 1.75 diff -u -r1.75 configure.tgt --- configure.tgt 24 Jul 2002 23:51:35 -0000 1.75 +++ configure.tgt 3 Aug 2002 20:30:55 -0000 @@ -87,9 +87,6 @@ i[3456]86-sequent-sysv4*) gdb_target=ptx4 ;; i[3456]86-sequent-sysv*) gdb_target=ptx ;; i[3456]86-ncr-*) gdb_target=ncr3000 ;; -i[3456]86-*-aout*) gdb_target=embed ;; -i[3456]86-*-coff*) gdb_target=embed ;; -i[3456]86-*-elf*) gdb_target=embed ;; i[3456]86-*-aix*) gdb_target=i386aix ;; i[3456]86-*-bsd*) gdb_target=i386bsd ;; i[3456]86-*-freebsd*) gdb_target=fbsd ;; @@ -118,8 +115,8 @@ configdirs="${configdirs} nlm" ;; i[3456]86-*-osf1mk*) gdb_target=i386mk ;; i[3456]86-*-cygwin*) gdb_target=cygwin ;; -i[3456]86-*-pe*) gdb_target=embed ;; i[3456]86-*-vxworks*) gdb_target=vxworks ;; +i[3456]86-*) gdb_target=embed ;; i960-*-bout*) gdb_target=vxworks960 ;; i960-nindy-coff*) gdb_target=nindy960 ;; --------------060704050007000908090001--