MSVC does not support VLAs, so we want to prevent VLAs from being introduced under this path.
Signed-off-by: Andre Muezerie <andre...@linux.microsoft.com> --- lib/latencystats/meson.build | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lib/latencystats/meson.build b/lib/latencystats/meson.build index 286558dd79..e3da90dd4e 100644 --- a/lib/latencystats/meson.build +++ b/lib/latencystats/meson.build @@ -4,3 +4,11 @@ sources = files('rte_latencystats.c') headers = files('rte_latencystats.h') deps += ['metrics', 'ethdev'] + +extra_flags = ['-Wvla'] + +foreach arg: extra_flags + if cc.has_argument(arg) + cflags += arg + endif +endforeach -- 2.47.0.vfs.0.3