Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 7 Jan 2013 11:21:05 -0800 (PST)
From:      Beeblebrox <zaphod@berentweb.com>
To:        freebsd-ports@freebsd.org
Subject:   ccache selects wrong compiler (calls clang, not gcc46)
Message-ID:  <1357586465629-5775609.post@n5.nabble.com>

next in thread | raw e-mail | index | archive | help
I have a clang-only world (no gcc42) and want to use gcc46 for port building.
I have ccache and distcc installed. In /etc/make.conf I have:

CC:=${CC:C,^gcc46,/usr/local/libexec/ccache/world/gcc46,1}
CXX:=${CXX:C,^g\+\+\46,/usr/local/libexec/ccache/world/g++46,1}

This used to work correctly but does not anymore. Compiler keeps insisting
on using clang and during portbuild I get below output. Note that I have
distcc disabled at the moment, but distcc gets called anyway.

distcc[11685] (dcc_build_somewhere) Warning: failed to distribute, running
locally instead
/usr/local/bin/ccache /usr/local/bin/distcc g++46 -c -pipe -g
-D__STDC_FORMAT_MACROS -Wno-unused-parameter -O2 -pipe -march=k8
-fno-strict-aliasing -fPIC -Wall -W  ... etc

I have traced the problem to the ccache pre-compiler because in
/etc/make.conf if I replace above with:
CC=gcc46
CXX=g++46
distcc and ccache still get called (but not clang) unless I also enable:
CPP=cpp46




--
View this message in context: http://freebsd.1045724.n5.nabble.com/ccache-selects-wrong-compiler-calls-clang-not-gcc46-tp5775609.html
Sent from the freebsd-ports mailing list archive at Nabble.com.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?1357586465629-5775609.post>