Skip to content

Commit

Permalink
[freeRTOS] use default MARCH/MABI
Browse files Browse the repository at this point in the history
  • Loading branch information
stnolting committed Oct 13, 2023
1 parent 0065f3d commit 86e0d42
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 16 deletions.
9 changes: 1 addition & 8 deletions sw/example/demo_freeRTOS/makefile
Original file line number Diff line number Diff line change
@@ -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)
Expand All @@ -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 ?=
# *****************************************************************************
Expand Down
9 changes: 1 addition & 8 deletions sw/example/demo_freeRTOS_xirq/makefile
Original file line number Diff line number Diff line change
@@ -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)
Expand All @@ -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 ?=
# *****************************************************************************
Expand Down

0 comments on commit 86e0d42

Please sign in to comment.