diff options
author | Daan De Meyer <daan.j.demeyer@gmail.com> | 2024-08-03 20:10:54 +0200 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2024-08-04 02:55:45 +0200 |
commit | ad723ca3e5bd41d2d884760375534910bb55d9b3 (patch) | |
tree | 867a06e6f71b30a8787aa7c8388030f54901df12 /meson.build | |
parent | hwdb: fix auto rotate on Asus Q551LB (#33921) (diff) | |
download | systemd-ad723ca3e5bd41d2d884760375534910bb55d9b3.tar.xz systemd-ad723ca3e5bd41d2d884760375534910bb55d9b3.zip |
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.
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build index 45030d29b0..c0eb6ca437 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', ] |