summaryrefslogtreecommitdiffstats
path: root/mkspecs/features/unix
diff options
context:
space:
mode:
authorLiang Qi <liang.qi@qt.io>2017-09-06 13:26:31 +0200
committerLiang Qi <liang.qi@qt.io>2017-09-06 13:26:31 +0200
commit19dd2ca93b8b95a5e2792b29ed62ea23800fb53e (patch)
tree17685d2a9628ec5936155e09da3edd74c9244b0e /mkspecs/features/unix
parent942922652481347659a0dae78758c334778a58d2 (diff)
parentd332a2d3ccb485c9decd6c47fa5a5fc02b59d27e (diff)
Merge remote-tracking branch 'origin/5.9' into 5.10
Conflicts: examples/opengl/qopenglwidget/main.cpp src/3rdparty/pcre2/src/pcre2_printint.c src/plugins/platforms/cocoa/qnsview.mm src/widgets/widgets/qcombobox.cpp Change-Id: I37ced9da1e8056f95851568bcc52cd5dc34f56af
Diffstat (limited to 'mkspecs/features/unix')
-rw-r--r--mkspecs/features/unix/ccache.prf19
1 files changed, 19 insertions, 0 deletions
diff --git a/mkspecs/features/unix/ccache.prf b/mkspecs/features/unix/ccache.prf
new file mode 100644
index 0000000000..d5739d3eab
--- /dev/null
+++ b/mkspecs/features/unix/ccache.prf
@@ -0,0 +1,19 @@
+macx-xcode: return()
+
+darwin: load(sdk)
+
+ccache_prefix = ccache
+
+precompile_header {
+ CCACHE_SLOPPINESS += pch_defines time_macros
+
+ ccache_prefix = \
+ CCACHE_SLOPPINESS=\"$$join(CCACHE_SLOPPINESS, ',')\$${CCACHE_SLOPPINESS+,\$$CCACHE_SLOPPINESS}\" \
+ # Make sure we build sources directly, not from their preprocessed version,
+ # otherwise precompiled headers will not be used during cache misses.
+ CCACHE_CPP2=true \
+ $$ccache_prefix
+}
+
+for(tool, $$list(QMAKE_CC QMAKE_CXX QMAKE_LINK QMAKE_LINK_SHLIB QMAKE_LINK_C)): \
+ $$tool = $$ccache_prefix $$eval($$tool)