[PATCH v14 33/81] lib/bbdev: add compile warning about use of VLAs
Andre Muezerie
andremue at linux.microsoft.com
Fri Jan 10 21:22:52 CET 2025
MSVC does not support VLAs, so we want to prevent VLAs from being
introduced under this path.
Signed-off-by: Andre Muezerie <andremue at linux.microsoft.com>
---
lib/bbdev/meson.build | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/lib/bbdev/meson.build b/lib/bbdev/meson.build
index 07685e7578..542372d29b 100644
--- a/lib/bbdev/meson.build
+++ b/lib/bbdev/meson.build
@@ -12,3 +12,11 @@ headers = files('rte_bbdev.h',
'rte_bbdev_pmd.h',
'rte_bbdev_op.h')
deps += ['mbuf']
+
+extra_flags = ['-Wvla']
+
+foreach arg: extra_flags
+ if cc.has_argument(arg)
+ cflags += arg
+ endif
+endforeach
--
2.47.0.vfs.0.3
More information about the dev
mailing list