From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 12393 invoked by alias); 23 Sep 2007 13:57:38 -0000 Received: (qmail 12377 invoked by uid 22791); 23 Sep 2007 13:57:37 -0000 X-Spam-Check-By: sourceware.org Received: from nf-out-0910.google.com (HELO nf-out-0910.google.com) (64.233.182.190) by sourceware.org (qpsmtpd/0.31) with ESMTP; Sun, 23 Sep 2007 13:57:31 +0000 Received: by nf-out-0910.google.com with SMTP id b11so1004025nfh for ; Sun, 23 Sep 2007 06:57:28 -0700 (PDT) Received: by 10.78.171.20 with SMTP id t20mr3075429hue.1190555848204; Sun, 23 Sep 2007 06:57:28 -0700 (PDT) Received: from ?88.210.68.113? ( [88.210.68.113]) by mx.google.com with ESMTPS id k9sm5019376nfh.2007.09.23.06.57.21 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sun, 23 Sep 2007 06:57:22 -0700 (PDT) Message-ID: <46F67068.9030605@portugalmail.pt> Date: Sun, 23 Sep 2007 13:57:00 -0000 From: Pedro Alves User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; pt-BR; rv:1.8.1.6) Gecko/20070728 Thunderbird/2.0.0.6 Mnenhy/0.7.5.0 MIME-Version: 1.0 To: Joel Brobecker , Pierre Muller , gdb-patches@sourceware.org Subject: Re: [RFC] Stabs parsing regression from GDB 6.6 to GDB 6.6.90 References: <000e01c7fb9b$22e600f0$68b202d0$@u-strasbg.fr> <000601c7fc25$98110430$c8330c90$@u-strasbg.fr> <46F486B4.6050900@portugalmail.pt> <46F56F04.6070601@portugalmail.pt> <20070922225808.GD3963@adacore.com> <20070922230806.GA30487@caradoc.them.org> <46F65040.8050203@portugalmail.pt> <20070923124153.GA2942@caradoc.them.org> In-Reply-To: <20070923124153.GA2942@caradoc.them.org> Content-Type: multipart/mixed; boundary="------------010105070308020604080509" X-IsSubscribed: yes Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2007-09/txt/msg00327.txt.bz2 This is a multi-part message in MIME format. --------------010105070308020604080509 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-length: 391 Daniel Jacobowitz wrote: > On Sun, Sep 23, 2007 at 12:38:40PM +0100, Pedro Alves wrote: >> 2007-09-23 Pedro Alves >> >> * configure.ac: Do gdb.stabs tests by default on Cygwin and MinGW >> targets. >> * configure: Regenerate. > > OK. Although, do you really need to check for 'pc' there? > No, not really. Committed as attached. Cheers, Pedro Alves --------------010105070308020604080509 Content-Type: text/x-diff; name="stabs_default.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="stabs_default.diff" Content-length: 1477 Index: ChangeLog =================================================================== RCS file: /cvs/src/src/gdb/testsuite/ChangeLog,v retrieving revision 1.1453 diff -u -p -r1.1453 ChangeLog --- ChangeLog 23 Sep 2007 07:56:22 -0000 1.1453 +++ ChangeLog 23 Sep 2007 13:52:02 -0000 @@ -1,3 +1,9 @@ +2007-09-23 Pedro Alves + + * configure.ac: Do gdb.stabs tests by default on Cygwin and MinGW + targets. + * configure: Regenerate. + 2007-09-23 Vladimir Prus * gdb.base/annota1.exp: Adjust for 'info break' Index: configure =================================================================== RCS file: /cvs/src/src/gdb/testsuite/configure,v retrieving revision 1.23 diff -u -p -r1.23 configure --- configure 23 Jan 2007 17:11:54 -0000 1.23 +++ configure 23 Sep 2007 13:52:05 -0000 @@ -1457,6 +1457,8 @@ case $target in | *-sun-* \ | hppa*-*-* \ | *-*-elf* \ + | *-*-cygwin* \ + | *-*-mingw* \ ) with_stabs=yes ;; *) Index: configure.ac =================================================================== RCS file: /cvs/src/src/gdb/testsuite/configure.ac,v retrieving revision 1.7 diff -u -p -r1.7 configure.ac --- configure.ac 23 Aug 2007 17:58:44 -0000 1.7 +++ configure.ac 23 Sep 2007 13:52:05 -0000 @@ -46,6 +46,8 @@ case $target in | *-sun-* \ | hppa*-*-* \ | *-*-elf* \ + | *-*-cygwin* \ + | *-*-mingw* \ ) with_stabs=yes ;; *) --------------010105070308020604080509--