summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhathach <[email protected]>2021-04-02 15:21:44 +0700
committerhathach <[email protected]>2021-04-02 15:21:44 +0700
commit7582528067fcfc0a4fe6039cfcb00d2f4c702b53 (patch)
tree80a8ef189ab914208cb3a92d0ed1e4d1548d4be1
parent48bb96f5072a173189d9076c5c2b1f5066327bf6 (diff)
revert make optimize flag
-rw-r--r--examples/make.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/make.mk b/examples/make.mk
index ffcb8ee5c..e04a2592a 100644
--- a/examples/make.mk
+++ b/examples/make.mk
@@ -103,7 +103,7 @@ CFLAGS += \
# Debugging/Optimization
ifeq ($(DEBUG), 1)
- CFLAGS += -O0
+ CFLAGS += -Og
else
CFLAGS += -Os
endif