From 30eb33955aef052c580bf58ed56ea8fdeb899c23 Mon Sep 17 00:00:00 2001 From: Ash Date: Mon, 12 Aug 2024 12:13:48 +0200 Subject: [PATCH] fix: remove unnecessary CFLAGS --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 8ac78ef..c076075 100644 --- a/Makefile +++ b/Makefile @@ -11,8 +11,7 @@ DESTDIR = ZIG = zig AR = ${ZIG} ar CC = ${ZIG} cc -CFLAGS_RELEASE = \ - -O3 -g0 -Werror -Wno-error=strict-prototypes -Wno-error=unused-variable +CFLAGS_RELEASE = -O3 -g0 -Werror # NOTE: -fsanitize=address doesn't work with zig cc yet, add later CFLAGS_DEBUG = -O0 -ggdb -g3 -DDEBUG -fno-omit-frame-pointer CFLAGS = -Wall -Wextra -std=gnu18 -Isrc -- 2.45.2