From 65fc42cce50de0a5039e703f6be568a29e23e213 Mon Sep 17 00:00:00 2001 From: ISSOtm Date: Thu, 5 Sep 2019 05:56:11 +0200 Subject: [PATCH] Remove `-Wchkp` from `develop` target This option has been removed in GCC 9, and according to GCC 8.2's man page, only has an implementation on Intel MRX anyways. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 869b4b2d..9fec40b1 100644 --- a/Makefile +++ b/Makefile @@ -203,7 +203,7 @@ wwwman: develop: $Qenv make -j WARNFLAGS="-Werror -Wall -Wextra -Wpedantic \ - -Wno-sign-compare -Wchkp -Wformat=2 -Wformat-overflow=2 \ + -Wno-sign-compare -Wformat=2 -Wformat-overflow=2 \ -Wformat-truncation=1 -Wformat-y2k -Wswitch-enum -Wunused \ -Wuninitialized -Wunknown-pragmas -Wstrict-overflow=5 \ -Wstringop-overflow=4 -Walloc-zero -Wduplicated-cond \