From 20e38fe682d079d2f5cdebde8a5deb4c1bb23559 Mon Sep 17 00:00:00 2001 From: HuntedByTheIRS Date: Thu, 2 Jul 2026 02:28:35 -0400 Subject: [PATCH] build: fix debug target - add -Wno-pre-c23-compat for wlroots headers --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 44c3fe3..3a48dd4 100644 --- a/Makefile +++ b/Makefile @@ -66,7 +66,7 @@ debug: CC = clang debug: CFLAGS += -Werror -Weverything \ -Wno-padded -Wno-unsafe-buffer-usage \ -Wno-c++-keyword -Wno-reserved-macro-identifier -Wno-reserved-identifier \ - -Wno-pre-c11-compat -Wno-implicit-void-ptr-cast -Wno-switch-default \ + -Wno-pre-c11-compat -Wno-pre-c23-compat -Wno-implicit-void-ptr-cast -Wno-switch-default \ -Wno-sign-conversion -Wno-used-but-marked-unused \ -Wno-cast-align -Wno-disabled-macro-expansion \ -Wno-double-promotion -Wno-bad-function-cast \