Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ValveSoftware/Proton.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Eikum <aeikum@codeweavers.com>2018-10-12 16:13:56 +0300
committerAndrew Eikum <aeikum@codeweavers.com>2018-10-12 16:44:37 +0300
commiteda71eee451bdf5b1e1b6d174816aaf4dd8ee642 (patch)
treeb83d95cc83fdf8fa822fbfcf12718371c0b34b0a
parent012b6af070d1f00dd926f812fcc860a7d023d916 (diff)
makefile: Disable ccache for nowproton-3.16beta-20181013
Doesn't play well with multiple Docker containers with the same temp dirs. Maybe fixed in a new ccache or we can work around with CCACHE_TEMPDIR.
-rw-r--r--build/makefile_base.mak6
1 files changed, 4 insertions, 2 deletions
diff --git a/build/makefile_base.mak b/build/makefile_base.mak
index cbd17a6c..468444a4 100644
--- a/build/makefile_base.mak
+++ b/build/makefile_base.mak
@@ -36,10 +36,12 @@ endif
# If CC is coming from make's defaults or nowhere, use our own default. Otherwise respect environment.
ifneq ($(filter default undefined,$(origin CC)),)
- CC = ccache gcc
+# CC = ccache gcc
+ CC = gcc
endif
ifneq ($(filter default undefined,$(origin CXX)),)
- CXX = ccache g++
+# CXX = ccache g++
+ CXX = g++
endif
export CC