From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Kevin Ryde Newsgroups: gmane.lisp.guile.devel Subject: Re: configure CC_FOR_BUILD Date: Mon, 19 May 2003 07:59:31 +1000 Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Message-ID: <87smrbykzg.fsf@zip.com.au> References: <87wugx5bao.fsf@zip.com.au> <87he8092h7.fsf@raven.i.defaultvalue.org> <87r86zg3q2.fsf@zip.com.au> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: main.gmane.org 1053295294 27191 80.91.224.249 (18 May 2003 22:01:34 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 18 May 2003 22:01:34 +0000 (UTC) Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Mon May 19 00:01:32 2003 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 19HWDk-00074R-00 for ; Mon, 19 May 2003 00:01:32 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 19HWDn-00051m-03 for guile-devel@m.gmane.org; Sun, 18 May 2003 18:01:35 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10.13) id 19HWCq-0003yu-00 for guile-devel@gnu.org; Sun, 18 May 2003 18:00:36 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10.13) id 19HWCa-00036x-00 for guile-devel@gnu.org; Sun, 18 May 2003 18:00:25 -0400 Original-Received: from snoopy.pacific.net.au ([61.8.0.36]) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 19HWCN-0002FM-00 for guile-devel@gnu.org; Sun, 18 May 2003 18:00:07 -0400 Original-Received: from sunny.pacific.net.au (sunny.pacific.net.au [203.2.228.40]) h4IM06xh017763 for ; Mon, 19 May 2003 08:00:06 +1000 Original-Received: from wisma.pacific.net.au (wisma.pacific.net.au [210.23.129.72]) by sunny.pacific.net.au with ESMTP id h4IM04Qg024113 for ; Mon, 19 May 2003 08:00:04 +1000 (EST) Original-Received: from localhost (ppp34.dyn228.pacific.net.au [203.143.228.34]) by wisma.pacific.net.au (8.12.9/8.12.9) with ESMTP id h4IM02YZ010601 for ; Mon, 19 May 2003 08:00:02 +1000 (EST) Original-Received: from gg by localhost with local (Exim 3.35 #1 (Debian)) id 19HWBn-0000PX-00; Mon, 19 May 2003 07:59:31 +1000 Original-To: guile-devel@gnu.org Mail-Copies-To: never User-Agent: Gnus/5.090019 (Oort Gnus v0.19) Emacs/21.2 (gnu/linux) X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1b5 Precedence: list List-Id: Developers list for Guile, the GNU extensibility library List-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Xref: main.gmane.org gmane.lisp.guile.devel:2402 X-Report-Spam: http://spam.gmane.org/gmane.lisp.guile.devel:2402 --=-=-= I wrote: > > * configure.in (--with-cc-for-build): Remove this option, CC_FOR_BUILD > variable is more or less standard, and is adequate for the task. I also updated the README, * README (Cross building Guile): Remove --with-cc-for-build in favour of CC_FOR_BUILD. --=-=-= Content-Disposition: attachment; filename=README.cc-for-build.diff --- README.~1.91.~ 2003-03-27 09:31:32.000000000 +1000 +++ README 2003-05-19 07:57:57.000000000 +1000 @@ -216,10 +216,13 @@ ./configure --host=i686-pc-cygwin --disable-shared -Two special options for cross building are available: +A C compiler for the build system is required. The default is +"PATH=/usr/bin:$PATH cc". If that doesn't suit it can be specified +with the CC_FOR_BUILD variable in the usual way, for instance ---with-cc-for-build --- native C compiler, to be used during build - defaults to: `PATH=/usr/bin:$PATH cc' + ./configure --host=m68k-unknown-linux-gnu CC_FOR_BUILD=/my/local/gcc + +A further special option for cross building is available: --with-guile-for-build --- native Guile executable, to be used during build defaults to: `guile', assuming you just --=-=-= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit _______________________________________________ Guile-devel mailing list Guile-devel@gnu.org http://mail.gnu.org/mailman/listinfo/guile-devel --=-=-=--