From 86e0d420ad0c73c97761f7972869b571d17b8b3b Mon Sep 17 00:00:00 2001 From: stnolting <22944758+stnolting@users.noreply.github.com> Date: Fri, 13 Oct 2023 17:22:55 +0200 Subject: [PATCH] [freeRTOS] use default MARCH/MABI --- sw/example/demo_freeRTOS/makefile | 9 +-------- sw/example/demo_freeRTOS_xirq/makefile | 9 +-------- 2 files changed, 2 insertions(+), 16 deletions(-) diff --git a/sw/example/demo_freeRTOS/makefile b/sw/example/demo_freeRTOS/makefile index 1e57157c6..10f17ee47 100644 --- a/sw/example/demo_freeRTOS/makefile +++ b/sw/example/demo_freeRTOS/makefile @@ -1,5 +1,5 @@ # ***************************************************************************** -# USER CONFIGURATION +# USER CONFIGURATION OVERRIDE # ***************************************************************************** # User's application sources (*.c, *.cpp, *.s, *.S); add additional files here APP_SRC ?= $(wildcard ./*.c) $(wildcard ./*.s) $(wildcard ./*.cpp) $(wildcard ./*.S) @@ -9,13 +9,6 @@ APP_INC ?= -I . # User's application include folders - for assembly files only (don't forget the '-I' before each entry) ASM_INC ?= -I . -# Optimization -EFFORT ?= -Os - -# CPU architecture and ABI -MARCH ?= rv32i -MABI ?= ilp32 - # User flags for additional configuration (will be added to compiler flags) USER_FLAGS ?= # ***************************************************************************** diff --git a/sw/example/demo_freeRTOS_xirq/makefile b/sw/example/demo_freeRTOS_xirq/makefile index e747dc500..c38171fe6 100644 --- a/sw/example/demo_freeRTOS_xirq/makefile +++ b/sw/example/demo_freeRTOS_xirq/makefile @@ -1,5 +1,5 @@ # ***************************************************************************** -# USER CONFIGURATION +# USER CONFIGURATION OVERRIDE # ***************************************************************************** # User's application sources (*.c, *.cpp, *.s, *.S); add additional files here APP_SRC ?= $(wildcard ./*.c) $(wildcard ./*.s) $(wildcard ./*.cpp) $(wildcard ./*.S) @@ -9,13 +9,6 @@ APP_INC ?= -I . # User's application include folders - for assembly files only (don't forget the '-I' before each entry) ASM_INC ?= -I . -# Optimization -EFFORT ?= -Os - -# CPU architecture and ABI -MARCH ?= rv32i -MABI ?= ilp32 - # User flags for additional configuration (will be added to compiler flags) USER_FLAGS ?= # *****************************************************************************