From 0b5d9138478bbdd3c4ac3e2b478994bbcfa33021 Mon Sep 17 00:00:00 2001 From: Romain Reignier Date: Tue, 28 Feb 2017 22:55:22 +0100 Subject: [testhal] Fixed path for ChibiOS-RT. --- testhal/STM32/STM32F0xx/qei/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'testhal/STM32') diff --git a/testhal/STM32/STM32F0xx/qei/Makefile b/testhal/STM32/STM32F0xx/qei/Makefile index 6f2e54c..6dbcf91 100644 --- a/testhal/STM32/STM32F0xx/qei/Makefile +++ b/testhal/STM32/STM32F0xx/qei/Makefile @@ -86,7 +86,7 @@ endif PROJECT = ch # Imported source files and paths -CHIBIOS = ../../../../../ChibiOS +CHIBIOS = ../../../../../ChibiOS-RT CHIBIOS_CONTRIB = $(CHIBIOS)/../ChibiOS-Contrib # Startup files. include $(CHIBIOS)/os/common/startup/ARMCMx/compilers/GCC/mk/startup_stm32f0xx.mk -- cgit v1.2.3 From 8974911eda3154feeba29fd680a13b84e7138e20 Mon Sep 17 00:00:00 2001 From: Romain Reignier Date: Tue, 28 Feb 2017 22:56:08 +0100 Subject: [testhal] Removed ccache dependency. --- testhal/STM32/STM32F7xx/USB_MSD/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'testhal/STM32') diff --git a/testhal/STM32/STM32F7xx/USB_MSD/Makefile b/testhal/STM32/STM32F7xx/USB_MSD/Makefile index 912a555..8f4695f 100644 --- a/testhal/STM32/STM32F7xx/USB_MSD/Makefile +++ b/testhal/STM32/STM32F7xx/USB_MSD/Makefile @@ -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. -- cgit v1.2.3