From e10141ba7b5cd047ee750a16def192c493e8560e Mon Sep 17 00:00:00 2001 From: Roland Kaufmann Date: Wed, 23 Jan 2013 09:17:41 +0100 Subject: [PATCH] Disable ccache by default We do dependency management the right way; there should be no need to use ccache on top of this. Actually, it will just hurt performance to do so without any win. --- GNUmakefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/GNUmakefile b/GNUmakefile index 7226764e..7baae785 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -15,6 +15,9 @@ PROCS:=$(shell echo "("$(NUM_CPUS)+1")"/1 | bc) IONICE:=$(shell test -x "$$(which ionice)" && echo ionice -c2 -n7) NICE:=$(shell test -x "$$(which nice)" && echo nice) +# we do dependency management the right way; don't attempt to cache +export CCACHE_DISABLE:=1 + # ignore that there may be files with these names, we are going to call # the other make regardless .PHONY: __everything $(MAKECMDGOALS)