From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 13960 invoked by alias); 24 May 2007 20:02:21 -0000 Received: (qmail 13885 invoked by uid 22791); 24 May 2007 20:02:08 -0000 X-Spam-Check-By: sourceware.org Received: from exsmtp01.agrinet.ch (HELO exsmtp01.agrinet.ch) (81.221.254.200) by sourceware.org (qpsmtpd/0.31) with ESMTP; Thu, 24 May 2007 20:02:04 +0000 Received: from smtp.messaging.ch ([10.50.252.215]) by exsmtp01.agrinet.ch with Microsoft SMTPSVC(6.0.3790.1830); Thu, 24 May 2007 22:02:00 +0200 Received: from wolfram.andreas.nets ([84.73.68.225]) by smtp.messaging.ch with id 382N1X0024rcz700000000; Thu, 24 May 2007 22:02:28 +0200 X-IMP: RBL SBL+XBL: 0.00,RBL SPAMCOP: 0.00,RBL SORBS: 0.10,URL RHS: 0.00,URL SURBL: 0.00 Message-ID: <4655EF30.3080705@pop.agri.ch> Date: Thu, 24 May 2007 20:02:00 -0000 From: Andreas Tobler User-Agent: Thunderbird 2.0.0.0 (Macintosh/20070326) MIME-Version: 1.0 To: Steve Ellcey CC: jjohnstn@redhat.com, bonzini@gnu.org, libtool@cwilson.fastmail.fm, newlib@sourceware.org, aoliva@redhat.com, gcc-patches@gcc.gnu.org, gdb-patches@sourceware.org, binutils@sourceware.org Subject: Re: New libtool is in the GCC and Src trees. References: <200705241735.KAA09881@hpsje.cup.hp.com> In-Reply-To: <200705241735.KAA09881@hpsje.cup.hp.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit 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-05/txt/msg00380.txt.bz2 Steve Ellcey wrote: > The GCC and src trees have been updated with the new libtool. Let me > know if you run into problems. gcc builds fail on Darwin. Attached a patch which cures the issue. Also, I'm analyzing the build failure in libjava, seems you forgot to regen the part in classpath. Ok? Thanks, Andreas 2007-05-24 Andreas Tobler * ltmain.sh: Fix Darwin verstring, remove ${wl}. Index: ltmain.sh =================================================================== --- ltmain.sh (revision 125036) +++ ltmain.sh (working copy) @@ -4794,7 +4794,7 @@ versuffix="$major.$age.$revision" # Darwin ld doesn't like 0 for these options... minor_current=`expr $current + 1` - verstring="${wl}-compatibility_version ${wl}$minor_current ${wl}-current_version ${wl}$minor_current.$revision" + verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" ;; freebsd-aout)