aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMiquel Sabaté Solà <mikisabate@gmail.com>2024-12-02 20:49:00 +0100
committerMiquel Sabaté Solà <mikisabate@gmail.com>2024-12-02 20:49:00 +0100
commita8d3f77812e8b6377169cfb6bf073a464e195cd3 (patch)
treea6c4fc2e019fbf9c4af56a13eac22f2e94a6d3e9 /Makefile
parent32e880127366fabc3e8b4fecb642f1cc06b8fd71 (diff)
downloadfbos-a8d3f77812e8b6377169cfb6bf073a464e195cd3.tar.gz
fbos-a8d3f77812e8b6377169cfb6bf073a464e195cd3.zip
Ensure the right optimitzation level on DEBUG
Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 0178601..bd53a84 100644
--- a/Makefile
+++ b/Makefile
@@ -49,7 +49,7 @@ ifeq ($(strip $(DEBUG)),)
QEMU_FLAGS += -nographic
else
ASFLAGS += -g
- CCFLAGS += -g -D__DEBUG__
+ CCFLAGS += -g -O0 -D__DEBUG__
QEMU_FLAGS += -s -S
endif