Acked-by: Chengwen Feng <fengcheng...@huawei.com> On 2024/11/22 5:41, Andre Muezerie wrote: > From: Tyler Retzlaff <roret...@linux.microsoft.com> > > MSVC does not support optional C11 VLAs. When building for Windows > enable -Wvla so that mingw and clang also fail if a VLA is used. > > Signed-off-by: Tyler Retzlaff <roret...@linux.microsoft.com> > Acked-by: Bruce Richardson <bruce.richard...@intel.com> > --- > config/meson.build | 4 ++++ > 1 file changed, 4 insertions(+) > > diff --git a/config/meson.build b/config/meson.build > index 6aaad6d8a4..ebca19b4e5 100644 > --- a/config/meson.build > +++ b/config/meson.build > @@ -342,6 +342,10 @@ if cc.get_id() == 'intel' > warning_flags += '-diag-disable=@0@'.format(i) > endforeach > endif > +# no VLAs in code built on Windows > +if is_windows > + warning_flags += '-Wvla' > +endif > foreach arg: warning_flags > if cc.has_argument(arg) > add_project_arguments(arg, language: 'c')
- [PATCH v12 00/21] remove use of VLAs for Windows Andre Muezerie
- [PATCH v12 06/21] hash/thash: remove use of VLAs for W... Andre Muezerie
- [PATCH v12 07/21] rcu: remove use of VLAs for Windows ... Andre Muezerie
- [PATCH v12 05/21] hash: remove use of VLAs for Windows... Andre Muezerie
- [PATCH v12 08/21] gro: fix overwrite unprocessed packe... Andre Muezerie
- [PATCH v12 14/21] common/idpf: remove use of VLAs for ... Andre Muezerie
- [PATCH v12 13/21] test: remove use of VLAs for Windows... Andre Muezerie
- [PATCH v12 15/21] net/i40e: remove use of VLAs for Win... Andre Muezerie
- [PATCH v12 18/21] build: enable vla warnings on Window... Andre Muezerie
- Re: [PATCH v12 18/21] build: enable vla warnings o... fengchengwen
- [PATCH v12 20/21] app/testpmd: remove use of VLAs for ... Andre Muezerie
- [PATCH v12 19/21] test: remove use of VLAs for Windows... Andre Muezerie
- [PATCH v12 12/21] app/testpmd: remove use of VLAs for ... Andre Muezerie
- [PATCH v12 16/21] common/mlx5: remove use of VLAs for ... Andre Muezerie
- [PATCH v12 17/21] net/mlx5: remove use of VLAs for Win... Andre Muezerie
- [PATCH v12 21/21] hash: remove use of VLAs by using st... Andre Muezerie
- [PATCH v12 03/21] eal/common: remove use of VLAs Andre Muezerie
- [PATCH v12 04/21] ethdev: remove use of VLAs for Windo... Andre Muezerie