From 56a25e235b2cfc9cc3675be2a10744de4d8fa66e Mon Sep 17 00:00:00 2001 From: Timo Kokkonen Date: Sun, 15 Aug 2010 20:45:22 +0300 Subject: [PATCH] Makefile: Disable optimizations for the debug version Signed-off-by: Timo Kokkonen --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 147ccea..2311e35 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ scan-pagemap: $(SCAN_PAGEMAP_OBJS) gcc -o $@ $(SCAN_PAGEMAP_OBJS) debug-pagemap: $(SCAN_PAGEMAP_DEBUG_OBJS) - gcc -o $@ $(SCAN_PAGEMAP_DEBUG_OBJS) -DDEBUG + gcc -o $@ $(SCAN_PAGEMAP_DEBUG_OBJS) -DDEBUG -O0 .c.o: @echo -e "\tCC\t" $@ -- 2.45.0