Try ccache #769
This commit is contained in:
parent
7c3e88c7dc
commit
7772dbe3e2
|
@ -27,6 +27,13 @@ ifeq ($(USE_OPT),)
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifeq ($(CCACHE_DIR),)
|
||||||
|
$(info No CCACHE_DIR)
|
||||||
|
else
|
||||||
|
$(info CCACHE_DIR is ${CCACHE_DIR})
|
||||||
|
CCPREFIX=ccache
|
||||||
|
endif
|
||||||
|
|
||||||
# C specific options here (added to USE_OPT).
|
# C specific options here (added to USE_OPT).
|
||||||
ifeq ($(USE_COPT),)
|
ifeq ($(USE_COPT),)
|
||||||
USE_COPT = -std=gnu99
|
USE_COPT = -std=gnu99
|
||||||
|
@ -218,8 +225,8 @@ else
|
||||||
TRGT =
|
TRGT =
|
||||||
endif
|
endif
|
||||||
|
|
||||||
CC = $(TRGT)gcc
|
CC = $(CCPREFIX) $(TRGT)gcc
|
||||||
CPPC = $(TRGT)g++
|
CPPC = $(CCPREFIX) $(TRGT)g++
|
||||||
# Enable loading with g++ only if you need C++ runtime support.
|
# Enable loading with g++ only if you need C++ runtime support.
|
||||||
# NOTE: You can use C++ even without C++ support if you are careful. C++
|
# NOTE: You can use C++ even without C++ support if you are careful. C++
|
||||||
# runtime support makes code size explode.
|
# runtime support makes code size explode.
|
||||||
|
|
Loading…
Reference in New Issue