From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 500D246079; Tue, 14 Jan 2025 02:26:10 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 43A2C40A89; Tue, 14 Jan 2025 02:24:11 +0100 (CET) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 3A2FF402BC for ; Tue, 14 Jan 2025 02:23:38 +0100 (CET) Received: by linux.microsoft.com (Postfix, from userid 1213) id D098F203D601; Mon, 13 Jan 2025 17:23:36 -0800 (PST) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com D098F203D601 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1736817816; bh=1KyV7dOPhnfajCUe4vjoMh7RUlLNfDATQqtFyg+r6gc=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=TfWCLFhq0WZ4nPEZ+KLTzrYq1j6DTzJVRn2Wtq1OAyNuV1jb5NLoUNYi9oaIe9G6u CX5tATVnTUUss+ez7ctVrmoOTzBdrU17GrtAvDmXfwNZTW9mbQa6YQ3aj3oh4W9S44 8hL92iG+n2PPLHpiGwvhF9vsBIUr1HXeWA0O4U+U= From: Andre Muezerie To: dev@dpdk.org Cc: konstantin.ananyev@huawei.com, thomas@monjalon.net, david.marchand@redhat.com, Andre Muezerie Subject: [PATCH v15 29/60] app/flow-perf: add compile warning about use of VLAs Date: Mon, 13 Jan 2025 17:22:41 -0800 Message-Id: <1736817792-24967-30-git-send-email-andremue@linux.microsoft.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1736817792-24967-1-git-send-email-andremue@linux.microsoft.com> References: <1713397319-26135-1-git-send-email-roretzla@linux.microsoft.com> <1736817792-24967-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 List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org MSVC does not support VLAs, so we want to prevent VLAs from being introduced under this path. Signed-off-by: Andre Muezerie --- app/test-flow-perf/meson.build | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/app/test-flow-perf/meson.build b/app/test-flow-perf/meson.build index 766e4516ad..42fe6831d0 100644 --- a/app/test-flow-perf/meson.build +++ b/app/test-flow-perf/meson.build @@ -15,3 +15,11 @@ sources = files( ) deps += ['ethdev'] + +extra_flags = ['-Wno-vla'] + +foreach arg: extra_flags + if cc.has_argument(arg) + cflags += arg + endif +endforeach -- 2.47.0.vfs.0.3