From fb1b58820fc4622a3b7f54b4096943e4768505cb Mon Sep 17 00:00:00 2001 From: =?utf8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Mon, 4 Sep 2017 19:49:12 +0300 Subject: [PATCH] build-sys: make nonnull warning non-fatal (#6742) Seems to be some kind of confusion in gcc. Insteading of playing whack-a-mole and adding work-arounds in code, let's adjust the compilation options instead. Fixes #6119, replaces #6657. --- meson.build | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 4102bb7..5fb90dd 100644 --- a/meson.build +++ b/meson.build @@ -285,7 +285,9 @@ endforeach foreach arg : ['unused-parameter', 'missing-field-initializers', 'unused-result', - 'format-signedness'] + 'format-signedness', + 'error=nonnull', # work-around for gcc 7.1 turning this on on its own + ] if cc.has_argument('-W' + arg) add_project_arguments('-Wno-' + arg, language : 'c') endif -- 2.7.4