testhal/STM32/f4/EICU: remove ccache

This commit is contained in:
Nicolas Reinecke 2016-05-01 02:30:40 +02:00
parent 65ba371306
commit 09a35652f7
1 changed files with 2 additions and 3 deletions

View File

@ -159,8 +159,8 @@ MCU = cortex-m4
#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.
@ -215,4 +215,3 @@ ULIBS =
RULESPATH = $(CHIBIOS)/os/common/startup/ARMCMx/compilers/GCC
include $(RULESPATH)/rules.mk