From 8c111c2189c10cd37f8590c1b2e7c92acf4aae2b Mon Sep 17 00:00:00 2001 From: dzaima Date: Tue, 11 Jun 2024 04:21:38 +0300 Subject: [PATCH] suppress clang vfor warnings on bootstrap build --- build/makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/makefile b/build/makefile index c7da323b..b8017abb 100644 --- a/build/makefile +++ b/build/makefile @@ -103,7 +103,7 @@ i_LD = $(i_CC) CC_IS_CLANG = $(shell $(i_CC) --version | head -n1 | grep -m 1 -c "clang") ifeq (${CC_IS_CLANG}, 1) - NOWARN = -Wno-microsoft-anon-tag -Wno-bitwise-instead-of-logical -Wno-unknown-warning-option + NOWARN = -Wno-microsoft-anon-tag -Wno-bitwise-instead-of-logical -Wno-unknown-warning-option -Wno-pass-failed else NOWARN = -Wno-parentheses endif