From 6b9b05885917e4488a9539c845173f593059aa13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nils=20O=2E=20Sel=C3=A5sdal?= Date: Mon, 8 Jun 2026 15:43:50 +0200 Subject: [PATCH] -Og doesn't work --- build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index 18449cd..f89c522 100755 --- a/build.sh +++ b/build.sh @@ -1,5 +1,5 @@ #!/bin/sh -CFLAGS=${CFLAGS:-"-Og -fsanitize=address -ggdb"} +CFLAGS=${CFLAGS:-"-fsanitize=address -ggdb"} CC=${CC:-gcc} set -x -${CC} -DDEBUG -pipe -Wall -Wextra -Wno-unused-parameter -Wno-unused-variable -std=gnu23 $CFLAGS src/*c +${CC} -DDEBUG -pipe -Wall -Wextra -Wno-unused-parameter -Wno-unused-variable -std=gnu2x $CFLAGS src/*c