From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <dev-bounces@dpdk.org>
Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124])
	by inbox.dpdk.org (Postfix) with ESMTP id D503346079;
	Tue, 14 Jan 2025 03:37:24 +0100 (CET)
Received: from mails.dpdk.org (localhost [127.0.0.1])
	by mails.dpdk.org (Postfix) with ESMTP id 1194742792;
	Tue, 14 Jan 2025 03:33:41 +0100 (CET)
Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182])
 by mails.dpdk.org (Postfix) with ESMTP id 4FA9740663
 for <dev@dpdk.org>; Tue, 14 Jan 2025 03:32:46 +0100 (CET)
Received: by linux.microsoft.com (Postfix, from userid 1213)
 id 1F6BB2043F2F; Mon, 13 Jan 2025 18:32:43 -0800 (PST)
DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 1F6BB2043F2F
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com;
 s=default; t=1736821965;
 bh=2uThv0yXRfNo7unD/ye+Xek8Q+JUwvIyj8pZRDSVqAE=;
 h=From:To:Cc:Subject:Date:In-Reply-To:References:From;
 b=oBMZ1Ua2krPcAONIOGRguHKQlMtuteU4QxldhdthVX3nDAS7Jfzhv0aJ5flk65cwL
 tMoECMFAAfSHU9mlTv8R2fbggskk9tvage60jbSPuO4FRS4oFAAQAr2HciHvHNH4uB
 CNyZp1yj9GXeNg+3N5ytoIkGkNM9kqRZD4HM8uC4=
From: Andre Muezerie <andremue@linux.microsoft.com>
To: dev@dpdk.org
Cc: konstantin.ananyev@huawei.com, thomas@monjalon.net,
 david.marchand@redhat.com, Andre Muezerie <andremue@linux.microsoft.com>
Subject: [PATCH v16 45/60] dispatcher: disable warning about use of VLAs
Date: Mon, 13 Jan 2025 18:32:23 -0800
Message-Id: <1736821958-3295-46-git-send-email-andremue@linux.microsoft.com>
X-Mailer: git-send-email 1.8.3.1
In-Reply-To: <1736821958-3295-1-git-send-email-andremue@linux.microsoft.com>
References: <1713397319-26135-1-git-send-email-roretzla@linux.microsoft.com>
 <1736821958-3295-1-git-send-email-andremue@linux.microsoft.com>
X-BeenThere: dev@dpdk.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: DPDK patches and discussions <dev.dpdk.org>
List-Unsubscribe: <https://mails.dpdk.org/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://mails.dpdk.org/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <https://mails.dpdk.org/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
Errors-To: dev-bounces@dpdk.org

This path is known to make use of VLAs, so we need to disable warnings
issued for VLAs to prevent the build from breaking.

Signed-off-by: Andre Muezerie <andremue@linux.microsoft.com>
---
 lib/dispatcher/meson.build | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/lib/dispatcher/meson.build b/lib/dispatcher/meson.build
index ffaef26a6d..0e13bb4824 100644
--- a/lib/dispatcher/meson.build
+++ b/lib/dispatcher/meson.build
@@ -7,6 +7,14 @@ if is_windows
     subdir_done()
 endif
 
+extra_flags = ['-Wno-vla']
+
+foreach arg: extra_flags
+    if cc.has_argument(arg)
+        cflags += arg
+    endif
+endforeach
+
 sources = files('rte_dispatcher.c')
 headers = files('rte_dispatcher.h')
 
-- 
2.47.0.vfs.0.3