mirror of
https://github.com/ValveSoftware/Proton.git
synced 2024-12-26 14:45:48 +03: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:
parent
012b6af070
commit
eda71eee45
@ -36,10 +36,12 @@ endif
|
|||||||
|
|
||||||
# If CC is coming from make's defaults or nowhere, use our own default. Otherwise respect environment.
|
# If CC is coming from make's defaults or nowhere, use our own default. Otherwise respect environment.
|
||||||
ifneq ($(filter default undefined,$(origin CC)),)
|
ifneq ($(filter default undefined,$(origin CC)),)
|
||||||
CC = ccache gcc
|
# CC = ccache gcc
|
||||||
|
CC = gcc
|
||||||
endif
|
endif
|
||||||
ifneq ($(filter default undefined,$(origin CXX)),)
|
ifneq ($(filter default undefined,$(origin CXX)),)
|
||||||
CXX = ccache g++
|
# CXX = ccache g++
|
||||||
|
CXX = g++
|
||||||
endif
|
endif
|
||||||
|
|
||||||
export CC
|
export CC
|
||||||
|
Loading…
Reference in New Issue
Block a user