[freeRTOS] use default MARCH/MABI

This commit is contained in:
stnolting 2023-10-13 17:22:55 +02:00
parent 0065f3ddb2
commit 86e0d420ad
2 changed files with 2 additions and 16 deletions

View file

@ -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 ?=
# *****************************************************************************

View file

@ -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 ?=
# *****************************************************************************