From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 648 invoked by alias); 19 Jul 2005 22:29:37 -0000 Mailing-List: contact gcc-help-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-help-owner@gcc.gnu.org Received: (qmail 632 invoked by uid 22791); 19 Jul 2005 22:29:32 -0000 Received: from exprod6og4.obsmtp.com (HELO psmtp.com) (64.18.1.124) by sourceware.org (qpsmtpd/0.30-dev) with SMTP; Tue, 19 Jul 2005 22:29:32 +0000 Received: from source ([192.150.20.142]) by exprod6ob4.obsmtp.com ([64.18.5.12]) with SMTP; Tue, 19 Jul 2005 15:29:29 PDT Received: from inner-relay-1.corp.adobe.com ([153.32.1.51]) by outbound-smtp-2.corp.adobe.com (8.12.10/8.12.10) with ESMTP id j6JMZaTK006135 for ; Tue, 19 Jul 2005 15:35:36 -0700 (PDT) Received: from iplan-mn (iplan-mn.corp.adobe.com [10.32.16.20]) by inner-relay-1.corp.adobe.com (8.12.10/8.12.10) with ESMTP id j6JMTQn2011867 for ; Tue, 19 Jul 2005 15:29:26 -0700 (PDT) Received: from iplan-mn (localhost [127.0.0.1]) by iplan-mn.corp.adobe.com (iPlanet Messaging Server 5.2 HotFix 2.02 (built Oct 21 2004)) with ESMTP id <0IJW0015RBT163@iplan-mn.corp.adobe.com> for gcc-help@gcc.gnu.org; Tue, 19 Jul 2005 17:29:25 -0500 (CDT) Received: from mn-eljay-a51m.adobe.com (mn-dhcp-17-28.corp.adobe.com [10.32.17.28]) by iplan-mn.corp.adobe.com (iPlanet Messaging Server 5.2 HotFix 2.02 (built Oct 21 2004)) with ESMTP id <0IJW0011XBT1GX@iplan-mn.corp.adobe.com> for gcc-help@gcc.gnu.org; Tue, 19 Jul 2005 17:29:25 -0500 (CDT) Date: Tue, 19 Jul 2005 22:29:00 -0000 From: Eljay Love-Jensen Subject: RE: Problem Building 32-bit gcc native compiler In-reply-to: <697750C28DC0474ABF279ECB3979E3730C01CC1D@hq4.pcmail.ingr.c om> To: "Bell, Timothy" , gcc-help@gcc.gnu.org Message-id: <6.2.1.2.2.20050719171917.02126798@iplan-mn.corp.adobe.com> MIME-version: 1.0 Content-type: text/plain; charset=us-ascii Content-transfer-encoding: 7BIT References: <697750C28DC0474ABF279ECB3979E3730C01CC1D@hq4.pcmail.ingr.com> X-SW-Source: 2005-07/txt/msg00184.txt.bz2 Hi Tim, Are you short on disk space? If not, what does... make bootstrap ...do? When I built (GCC 3.4.3), I used the trick of narrowly specifying my PATH... PATH=/net/export/share/gcc-3.2/bin:/bin:/usr/bin make -j 4 CFLAGS='-O' LIBCFLAGS='-g -O2' LIBCXXFLAGS='-g -O2 -fno-implicit-templates' bootstrap-lean ...which worked well for me. Avoided some undesirable interactions with Solaris's compiler. I haven't tried to build GCC 4.0 from scratch yet, though. Oh, and my configure was... PATH=/net/export/share/gcc-3.2/bin:/bin:/usr/bin \ /export/eljay/gcc-3.4.3/configure \ --prefix=/export/eljay/gcc34 \ --enable-languages=c,c++ \ --with-gnu-as \ --with-as=/net/export/share/gcc-3.2/bin/as \ --with-gnu-ld \ --with-ld=/net/export/share/gcc-3.2/bin/ld \ --enable-threads \ --enable-shared \ --disable-symvers \ --disable-__cxa_atexit ...which has some Solaris-isms in there. But just as an FYI, I thought I'd pass it along. --Eljay reference... http://gnu.miscellaneousmirror.org/software/gcc/gcc-4.0/buildstat.html