From 56d69ddf64c3a8bc8fd4f5613f3eaade365a662d Mon Sep 17 00:00:00 2001 From: Mark VanderVoord Date: Fri, 15 May 2026 14:26:54 -0400 Subject: [PATCH] Fix Issue #828: Don't use -Weverything for production use. --- test/Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/Makefile b/test/Makefile index 9b50740..b34a150 100644 --- a/test/Makefile +++ b/test/Makefile @@ -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