From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 11191 invoked by alias); 4 Dec 2007 20:02:59 -0000 Received: (qmail 11178 invoked by uid 22791); 4 Dec 2007 20:02:59 -0000 X-Spam-Check-By: sourceware.org Received: from mx1.solipsys.com (HELO mx1.solipsys.com) (67.91.27.3) by sourceware.org (qpsmtpd/0.31) with ESMTP; Tue, 04 Dec 2007 20:02:54 +0000 X-ASG-Debug-ID: 1196798645-4bc1033c0000-6usId6 X-Barracuda-URL: http://10.2.0.66:8000/cgi-bin/mark.cgi Received: from rs-exsvr-1.solipsys.com (localhost [127.0.0.1]) by mx1.solipsys.com (Spam Firewall) with ESMTP id 44A257E848; Tue, 4 Dec 2007 15:04:05 -0500 (EST) Received: from rs-exsvr-1.solipsys.com (rs-exsvr-1.solipsys.com [10.2.1.28]) by mx1.solipsys.com with ESMTP id qpROBYfF4uYY1vlI; Tue, 04 Dec 2007 15:04:05 -0500 (EST) X-ASG-Whitelist: Sender X-ASG-Whitelist: Sender Received: from [127.0.0.1] ([10.2.12.148]) by rs-exsvr-1.solipsys.com with Microsoft SMTPSVC(6.0.3790.1830); Tue, 4 Dec 2007 15:02:52 -0500 Message-ID: <4755B26C.1010906@solipsys.com> Date: Tue, 04 Dec 2007 20:02:00 -0000 From: Tony Wetmore User-Agent: Thunderbird 2.0.0.9 (Windows/20071031) MIME-Version: 1.0 To: Thomas Dineen CC: gcc-help@gcc.gnu.org X-ASG-Orig-Subj: Re: Serious Bugs In Gcc Builds Subject: Re: Serious Bugs In Gcc Builds References: <4755A3B9.9060601@ix.netcom.com> In-Reply-To: <4755A3B9.9060601@ix.netcom.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Barracuda-Connect: rs-exsvr-1.solipsys.com[10.2.1.28] X-Barracuda-Start-Time: 1196798645 X-Barracuda-Virus-Scanned: by Barracuda Spam Firewall at solipsys.com X-IsSubscribed: yes Mailing-List: contact gcc-help-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-help-owner@gcc.gnu.org X-SW-Source: 2007-12/txt/msg00100.txt.bz2 Thomas Dineen wrote: > ln -s /opt/sfw/bin/gld ld > ln -s /opt/sfw/bin/gas as > /export/home/tools/gcc/gcc-3.4.6/configure --with-gnu-ld > --with-gnu-as --with-as=/opt/sfw/bin/as --with-ld=/opt/sfw/bin/ld Thomas, I don't think the "ln -s" commands work as you expect. Those commands will create symlinks "ld" and "as" in your current working directory (i.e. /export/home/tools/gcc/gcc-3.4.6-obj), not in /opt/sfw/bin. So when you specify "/opt/sfw/bin/as", you are *not* using the symlink that you just created. Instead, I think you should specify, for example: --with-ld=/export/home/tools/gcc/gcc-3.4.6-obj/ld Or why not just skip the symlinks and specify: --with-gnu-ld --with-ld=/opt/sfw/bin/gld Does that not work? -- Tony Wetmore