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:
Andrew Eikum 2018-10-12 08:13:56 -05:00
parent 012b6af070
commit eda71eee45

View file

@ -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