diff options
Diffstat (limited to 'testhal/STM32/STM32F4xx/EICU/Makefile')
-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 - |