From: Fred Morcos Date: Tue, 8 Aug 2023 21:09:34 +0000 (+0200) Subject: Meson: Add -Wno-ignored-attributes X-Git-Tag: rec-5.1.0-alpha1~80^2~270 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4ad2062a0ef804ad8c2321da111032f45dd71d9c;p=thirdparty%2Fpdns.git Meson: Add -Wno-ignored-attributes --- diff --git a/meson/compiler-setup/meson.build b/meson/compiler-setup/meson.build index 29599f0e6c..e132b79ec8 100644 --- a/meson/compiler-setup/meson.build +++ b/meson/compiler-setup/meson.build @@ -7,7 +7,7 @@ if meson.get_compiler('cpp').get_id() == 'clang' add_global_arguments('-ferror-limit=0', language: ['c', 'cpp']) endif -add_global_arguments('-Wshadow', '-Wmissing-declarations', '-Wredundant-decls', language: ['c', 'cpp']) +add_global_arguments('-Wshadow', '-Wmissing-declarations', '-Wredundant-decls', '-Wno-ignored-attributes', language: ['c', 'cpp']) cxx = meson.get_compiler('cpp') system = target_machine.system()