Fix Issue #828: Don't use -Weverything for production use.

This commit is contained in:
Mark VanderVoord
2026-05-15 14:26:54 -04:00
parent b1d96f2491
commit 56d69ddf64
+1 -2
View File
@@ -9,8 +9,7 @@ ifeq ($(shell uname -s), Darwin)
CC = clang
endif
ifeq ($(findstring clang, $(CC)), clang)
E = -Weverything
CFLAGS += $E -Wno-unknown-warning-option
CFLAGS += -Wno-unknown-warning-option
CFLAGS += -Wno-unsafe-buffer-usage
endif
CFLAGS += -std=c99 -pedantic -Wall -Wextra -Werror