diff options
author | Nicolas Reinecke <nr@das-labor.org> | 2016-05-01 02:30:40 +0200 |
---|---|---|
committer | Nicolas Reinecke <nr@das-labor.org> | 2016-05-01 03:28:47 +0200 |
commit | 09a35652f719e7c21fea4063484625edc4091fe6 (patch) | |
tree | 4c582c3a8e2cdb35c33d4c1bc45c6fa5c2655ce7 /testhal/STM32/STM32F4xx | |
parent | 65ba371306b8e4ab07aa7936a132610df14eea3d (diff) | |
download | ChibiOS-Contrib-09a35652f719e7c21fea4063484625edc4091fe6.tar.gz ChibiOS-Contrib-09a35652f719e7c21fea4063484625edc4091fe6.tar.bz2 ChibiOS-Contrib-09a35652f719e7c21fea4063484625edc4091fe6.zip |
testhal/STM32/f4/EICU: remove ccache
Diffstat (limited to 'testhal/STM32/STM32F4xx')
-rw-r--r-- | testhal/STM32/STM32F4xx/EICU/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/testhal/STM32/STM32F4xx/EICU/Makefile b/testhal/STM32/STM32F4xx/EICU/Makefile index 2f7c168..db59af2 100644 --- a/testhal/STM32/STM32F4xx/EICU/Makefile +++ b/testhal/STM32/STM32F4xx/EICU/Makefile @@ -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 - |