]> git.proxmox.com Git - wasi-libc.git/commitdiff
Add -Wno-sign-compare too.
authorDan Gohman <dev@sunfishcode.online>
Fri, 5 Feb 2021 02:08:41 +0000 (18:08 -0800)
committerDan Gohman <dev@sunfishcode.online>
Fri, 5 Feb 2021 05:23:10 +0000 (21:23 -0800)
Makefile

index 44e355f3d73402a51e446ed26b654272278bd772..3bd92fa236e522fc179ef9d8eab1010117685917 100644 (file)
--- 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)