From owner-cvs-all@FreeBSD.ORG Wed Nov 17 02:45:45 2010 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A924A1065670; Wed, 17 Nov 2010 02:45:45 +0000 (UTC) (envelope-from rfarmer@predatorlabs.net) Received: from mail-qw0-f54.google.com (mail-qw0-f54.google.com [209.85.216.54]) by mx1.freebsd.org (Postfix) with ESMTP id 263468FC1B; Wed, 17 Nov 2010 02:45:44 +0000 (UTC) Received: by qwd7 with SMTP id 7so314886qwd.13 for ; Tue, 16 Nov 2010 18:45:44 -0800 (PST) MIME-Version: 1.0 Received: by 10.224.196.67 with SMTP id ef3mr7305539qab.160.1289960045073; Tue, 16 Nov 2010 18:14:05 -0800 (PST) Received: by 10.220.16.199 with HTTP; Tue, 16 Nov 2010 18:14:05 -0800 (PST) X-Originating-IP: [128.95.133.113] In-Reply-To: <201011170010.oAH0AOV9022776@repoman.freebsd.org> References: <201011170010.oAH0AOV9022776@repoman.freebsd.org> Date: Tue, 16 Nov 2010 18:14:05 -0800 Message-ID: From: Rob Farmer To: Emanuel Haupt Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: cvs-ports@freebsd.org, cvs-all@freebsd.org, ports-committers@freebsd.org Subject: Re: cvs commit: ports/devel/ccache Makefile ports/devel/ccache/files ccache-howto-freebsd.txt.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Nov 2010 02:45:45 -0000 On Tue, Nov 16, 2010 at 16:10, Emanuel Haupt wrote: > ehaupt =A0 =A0 =A02010-11-17 00:10:24 UTC > > =A0FreeBSD ports repository > > =A0Modified files: > =A0 =A0devel/ccache =A0 =A0 =A0 =A0 Makefile > =A0 =A0devel/ccache/files =A0 ccache-howto-freebsd.txt.in > =A0Log: > =A0Update instructions on how to workaround a buildworld failure. > > =A0[1] http://kerneltrap.org/mailarchive/freebsd-hackers/2010/11/8/688668= 4 # src options .if (!empty(.CURDIR:M/usr/src*) || !empty(.CURDIR:M/usr/obj*)) .if !defined(NOCCACHE) CC:=3D${CC:C,^cc,/usr/local/libexec/ccache/world-cc,1} CXX:=3D${CXX:C,^c\+\+,/usr/local/libexec/ccache/world-c++,1} .endif .endif This will allow ccache to still be used for the lib32 bits - if I am reading correctly, your directions revert to regular gcc for this stage. (I didn't come up with this - it was discussed on questions@ a few months b= ack). --=20 Rob Farmer