From 8304c0620bcf54a30eeb083906eebf801cbf1253 Mon Sep 17 00:00:00 2001 From: Quinn Date: Thu, 19 Jun 2025 23:32:38 +0200 Subject: [PATCH] fix: not adding -DNDEBUG flag to compilation --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index cf76e6c..9536d3a 100644 --- a/makefile +++ b/makefile @@ -1,5 +1,5 @@ CC ?= cc -CFLAGS += -Wall -Wextra -Wpedantic -O3 -MD -MP -std=gnu99 +CFLAGS += -Wall -Wextra -Wpedantic -O3 -MD -MP -std=gnu99 -DNDEBUG LDFLAGS += SRC = $(shell find src/ -name '*.c')