From: Daan De Meyer Date: Sat, 3 Aug 2024 18:10:54 +0000 (+0200) Subject: meson: Use -fstrict-flex-arrays=3 X-Git-Tag: v257-rc1~746 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ad723ca3e5bd41d2d884760375534910bb55d9b3;p=thirdparty%2Fsystemd.git meson: Use -fstrict-flex-arrays=3 Let's explicitly pass the value to -fstrict-flex-arrays. This does not change behavior but it does (selfishly) make my error not bug out with an error saying -fstrict-flex-arrays does not exist. --- diff --git a/meson.build b/meson.build index 45030d29b0e..c0eb6ca437e 100644 --- a/meson.build +++ b/meson.build @@ -411,7 +411,7 @@ possible_common_cc_flags = [ '-fno-common', '-fstack-protector', '-fstack-protector-strong', - '-fstrict-flex-arrays', + '-fstrict-flex-arrays=3', '--param=ssp-buffer-size=4', ]