summaryrefslogtreecommitdiff
path: root/examples/make.mk
diff options
context:
space:
mode:
authorValentin Milea <[email protected]>2022-01-07 15:12:07 +0200
committerValentin Milea <[email protected]>2022-01-07 15:12:07 +0200
commitc2533a45bd932d672458cf54d37ac5207a734e41 (patch)
treea8d886bdccaed451053262b0d875612338389474 /examples/make.mk
parenta284e438f1952315631f354dee2b30b264afb324 (diff)
parent3b09b82123a50bef6b18cf90c2734ae7581da4a3 (diff)
Merge branch 'master' into feature/feedback_format
Diffstat (limited to 'examples/make.mk')
-rw-r--r--examples/make.mk4
1 files changed, 3 insertions, 1 deletions
diff --git a/examples/make.mk b/examples/make.mk
index 793c40aa2..bed46d02b 100644
--- a/examples/make.mk
+++ b/examples/make.mk
@@ -54,6 +54,8 @@ endif
#-------------- Cross Compiler ------------
# Can be set by board, default to ARM GCC
CROSS_COMPILE ?= arm-none-eabi-
+# Allow for -Os to be changed by board makefiles in case -Os is not allowed
+CFLAGS_OPTIMIZED ?= -Os
CC = $(CROSS_COMPILE)gcc
CXX = $(CROSS_COMPILE)g++
@@ -112,7 +114,7 @@ CFLAGS += \
ifeq ($(DEBUG), 1)
CFLAGS += -Og
else
- CFLAGS += -Os
+ CFLAGS += $(CFLAGS_OPTIMIZED)
endif
# Log level is mapped to TUSB DEBUG option