fix: debug was not correctly defined

This commit is contained in:
Alessandre Laguierce 2025-03-21 19:09:44 +01:00
parent c5c1b74906
commit 4bb1bb839a

View File

@ -39,9 +39,9 @@ LDFLAGS+=-lpthread
CFLAGS+=-DUSE_PTHREAD CFLAGS+=-DUSE_PTHREAD
endif endif
ifndef USE_DEBUG ifndef USE_DEBUG
CFLAGS+=-g -O0 -DNDEBUG -DNTRACE CFLAGS+=-O3 -DNDEBUG -DNTRACE
else else
CFLAGS+=-03 CFLAGS+=-g -O0
endif endif
# Tests if the last compilation was with pthread # Tests if the last compilation was with pthread