summaryrefslogtreecommitdiff
path: root/examples/make.mk
diff options
context:
space:
mode:
authorHa Thach <[email protected]>2022-11-21 17:22:52 +0700
committerGitHub <[email protected]>2022-11-21 17:22:52 +0700
commit4a2e424103b0a2626a6cb464a350c68ae109cc7e (patch)
tree4a46f70fc34bc477b5c742b6f5a103322b7753f1 /examples/make.mk
parent95fb11fcffd27a055561d2171aa99199982bb563 (diff)
parenta394273ed28bdbd9ed5cf4ba94a99204bdd841e9 (diff)
Merge pull request #1746 from hathach/host-msc-example
Add host msc explorer example
Diffstat (limited to 'examples/make.mk')
-rw-r--r--examples/make.mk3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/make.mk b/examples/make.mk
index 47520d660..73a39a8fe 100644
--- a/examples/make.mk
+++ b/examples/make.mk
@@ -113,7 +113,8 @@ CFLAGS += \
# Debugging/Optimization
ifeq ($(DEBUG), 1)
- CFLAGS += -Og
+ CFLAGS += -O0
+ NO_LTO = 1
else
CFLAGS += $(CFLAGS_OPTIMIZED)
endif