From 9520010f910837ccae20058d201a5c6166c2447f Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Thu, 4 Feb 2021 18:08:41 -0800 Subject: [PATCH] Add -Wno-sign-compare too. --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 44e355f..3bd92fa 100644 --- a/Makefile +++ b/Makefile @@ -191,7 +191,8 @@ CFLAGS += -fno-trapping-math # Add all warnings, but disable a few which occur in third-party code. CFLAGS += -Wall -Wextra -Werror \ -Wno-null-pointer-arithmetic \ - -Wno-unused-parameter + -Wno-unused-parameter \ + -Wno-sign-compare # Configure support for threads. ifeq ($(THREAD_MODEL), single) -- 2.39.5