[testhal] Removed ccache dependency.

This commit is contained in:
Romain Reignier 2017-02-28 22:56:08 +01:00
parent 0b5d913847
commit 8974911eda
1 changed files with 2 additions and 2 deletions

View File

@ -175,8 +175,8 @@ MCU = cortex-m7
#TRGT = arm-elf-
TRGT = arm-none-eabi-
CC = ccache $(TRGT)gcc
CPPC = ccache $(TRGT)g++
CC = $(TRGT)gcc
CPPC = $(TRGT)g++
# 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++
# runtime support makes code size explode.