mirror of
https://github.com/ValveSoftware/Proton
synced 2025-08-31 14:45:23 +00:00
makefile: Disable ccache for now
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.
This commit is contained in:
@@ -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
|
||||
|
Reference in New Issue
Block a user