From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 2247 invoked by alias); 25 Aug 2007 17:35:57 -0000 Received: (qmail 2158 invoked by uid 22791); 25 Aug 2007 17:35:56 -0000 X-Spam-Check-By: sourceware.org Received: from mail.codesourcery.com (HELO mail.codesourcery.com) (65.74.133.4) by sourceware.org (qpsmtpd/0.31) with ESMTP; Sat, 25 Aug 2007 17:35:50 +0000 Received: (qmail 3423 invoked from network); 25 Aug 2007 17:35:48 -0000 Received: from unknown (HELO digraph.polyomino.org.uk) (joseph@127.0.0.2) by mail.codesourcery.com with ESMTPA; 25 Aug 2007 17:35:48 -0000 Received: from jsm28 (helo=localhost) by digraph.polyomino.org.uk with local-esmtp (Exim 4.63) (envelope-from ) id 1IOzWr-0000qx-Fy for gcc-patches@gcc.gnu.org; Sat, 25 Aug 2007 17:34:44 +0000 Date: Sat, 25 Aug 2007 20:21:00 -0000 From: "Joseph S. Myers" To: gcc-patches@gcc.gnu.org Subject: Re: Ping Re: Debug info path remapping In-Reply-To: <20070824135238.GA6629@caradoc.them.org> Message-ID: References: <20070824135238.GA6629@caradoc.them.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org X-SW-Source: 2007-08/txt/msg01719.txt.bz2 On Fri, 24 Aug 2007, Daniel Jacobowitz wrote: > On Fri, Aug 17, 2007 at 02:52:30PM +0000, Joseph S. Myers wrote: > > Ping again: this binutils patch > > is pending > > review. (Presume the new file would be updated on GPLv3 on commit.) > > This patch is OK. I got a request from Matthias to have this > functionality on the branch; it's a bit of a stretch at this date > (sorry, Ben!) but I think worth making an exception for since > distributors are likely to apply it anyway. I've applied the binutils patch to mainline and 2.18 branch, and accordingly applied as obvious this GCC patch to make the configure test use 2.18 again (as in the original submission before 2.18 branched) as the version where an in-tree assembler is presumed to have this feature. Index: configure =================================================================== --- configure (revision 127799) +++ configure (working copy) @@ -16276,7 +16276,7 @@ else gcc_cv_as_debug_prefix_map_flag=no if test $in_tree_gas = yes; then - if test $gcc_cv_gas_vers -ge `expr \( \( 2 \* 1000 \) + 19 \) \* 1000 + 0` + if test $gcc_cv_gas_vers -ge `expr \( \( 2 \* 1000 \) + 18 \) \* 1000 + 0` then gcc_cv_as_debug_prefix_map_flag=yes fi elif test x$gcc_cv_as != x; then Index: ChangeLog =================================================================== --- ChangeLog (revision 127799) +++ ChangeLog (working copy) @@ -1,3 +1,9 @@ +2007-08-25 Joseph Myers + + * configure.ac (--debug-prefix-map check): Change assembler + version presumed to have feature to 2.18. + * configure: Regenerate. + 2007-08-25 Kaveh R. Ghazi * c-common.c (vector_types_convertible_p, Index: configure.ac =================================================================== --- configure.ac (revision 127799) +++ configure.ac (working copy) @@ -3103,7 +3103,7 @@ gcc_GAS_CHECK_FEATURE([--debug-prefix-map option], gcc_cv_as_debug_prefix_map_flag, - [2,19,0], [--debug-prefix-map /a=/b], [$insn],, + [2,18,0], [--debug-prefix-map /a=/b], [$insn],, [AC_DEFINE(HAVE_AS_DEBUG_PREFIX_MAP, 1, [Define if your assembler supports the --debug-prefix-map option.])]) fi -- Joseph S. Myers joseph@codesourcery.com