-rw-r--r-- | Vars.make | 4 | ||||
-rw-r--r-- | mkspecs/qws/linux-generic-g++/qmake.conf | 4 |
2 files changed, 6 insertions, 2 deletions
@@ -121 +121,5 @@ ifeq ($(STRIP),) endif + +export CCACHE=$(shell which ccache 2>/dev/null) +export DISTCC=$(shell which distcc 2>/dev/null) + diff --git a/mkspecs/qws/linux-generic-g++/qmake.conf b/mkspecs/qws/linux-generic-g++/qmake.conf index 40af4ad..2610b12 100644 --- a/mkspecs/qws/linux-generic-g++/qmake.conf +++ b/mkspecs/qws/linux-generic-g++/qmake.conf @@ -10,3 +10,3 @@ CONFIG += qt warn_on release -QMAKE_CC = gcc +QMAKE_CC = $(CCACHE) $(DISTCC) gcc QMAKE_LEX = flex @@ -24,3 +24,3 @@ QMAKE_CFLAGS_THREAD = -D_REENTRANT -QMAKE_CXX = g++ +QMAKE_CXX = $(CCACHE) $(DISTCC) g++ QMAKE_CXXFLAGS = $$QMAKE_CFLAGS -DQWS -fno-exceptions -fno-rtti $(CXXFLAGS_EXTRA) |