From 4bb1bb839a0bfb5aebc511634ed052d9695465cd Mon Sep 17 00:00:00 2001 From: Alessandre Laguierce Date: Fri, 21 Mar 2025 19:09:44 +0100 Subject: [PATCH] fix: debug was not correctly defined --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 642f58a..3f265e5 100644 --- a/Makefile +++ b/Makefile @@ -39,9 +39,9 @@ LDFLAGS+=-lpthread CFLAGS+=-DUSE_PTHREAD endif ifndef USE_DEBUG -CFLAGS+=-g -O0 -DNDEBUG -DNTRACE +CFLAGS+=-O3 -DNDEBUG -DNTRACE else -CFLAGS+=-03 +CFLAGS+=-g -O0 endif # Tests if the last compilation was with pthread