From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1370 invoked by alias); 2 Aug 2009 19:37:39 -0000 Received: (qmail 1360 invoked by uid 22791); 2 Aug 2009 19:37:38 -0000 X-SWARE-Spam-Status: No, hits=-0.9 required=5.0 tests=AWL,BAYES_00,FRT_OFFER2,SPF_FAIL X-Spam-Check-By: sourceware.org Received: from mx20.gnu.org (HELO mx20.gnu.org) (199.232.41.8) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Sun, 02 Aug 2009 19:37:32 +0000 Received: from mail.codesourcery.com ([65.74.133.4]) by mx20.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MXgs6-0006th-Hh for gcc@gcc.gnu.org; Sun, 02 Aug 2009 15:37:30 -0400 Received: (qmail 21767 invoked from network); 2 Aug 2009 19:37:29 -0000 Received: from unknown (HELO ?192.168.2.100?) (wilson@127.0.0.2) by mail.codesourcery.com with ESMTPA; 2 Aug 2009 19:37:29 -0000 Message-ID: <4A75EAF9.2080002@codesourcery.com> Date: Sun, 02 Aug 2009 19:37:00 -0000 From: Jim Wilson User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1b3pre) Gecko/20090513 Fedora/3.0-2.3.beta2.fc11 Thunderbird/3.0b2 MIME-Version: 1.0 To: Robert Oeffner CC: gcc@gcc.gnu.org Subject: Re: compiling libgomp separately References: <39B32765B4ED4A938B9251461100C411@Dirac> In-Reply-To: <39B32765B4ED4A938B9251461100C411@Dirac> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Detected-Operating-System: by mx20.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) Mailing-List: contact gcc-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-owner@gcc.gnu.org X-SW-Source: 2009-08/txt/msg00020.txt.bz2 On 08/01/2009 04:28 AM, Robert Oeffner wrote: > I'm trying to port GCC 4.4.0 to interix. I have some issues with > libgomp. To save time rather than bootstrapping GCC each time I make a > change I would like to compile libgomp separately to make my amendments > take effect. Configure with --disable-bootstrap so that gcc won't try to bootstrap when you type make. You can also use "make all-target-libgomp" to just build libgomp and everything it depends on (which probably includes gcc). Jim