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 9D9FD46079; Tue, 14 Jan 2025 02:26:20 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 6229140B98; Tue, 14 Jan 2025 02:24:13 +0100 (CET) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 606764042E for ; Tue, 14 Jan 2025 02:23:38 +0100 (CET) Received: by linux.microsoft.com (Postfix, from userid 1213) id ABE0820591BE; Mon, 13 Jan 2025 17:23:35 -0800 (PST) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com ABE0820591BE DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1736817816; bh=B09deGG5cpuLnAaR+Zt5JC24BI46CKf3JcQtBpz3pdA=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=ZWs3MZ44uTyzFNEhzXRCUhIEMfWXFRjzDO+UwbRquTXolx13Igr4csOdA9u9cD2L4 v16hjfqA4K3XQRA2F1dr7FhyRMmdyFbkN+sHHUwe3nSd01jspVw/YvN0SZlxzc1GmZ IfPHk4cM6Ps7Q37X/fkxPtb8qwGDBmaHpDxlRArg= From: Andre Muezerie To: dev@dpdk.org Cc: konstantin.ananyev@huawei.com, thomas@monjalon.net, david.marchand@redhat.com, Andre Muezerie Subject: [PATCH v15 26/60] app/test-crypto-perf: disable warning about use of VLAs Date: Mon, 13 Jan 2025 17:22:38 -0800 Message-Id: <1736817792-24967-27-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 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 --- app/test-crypto-perf/meson.build | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/app/test-crypto-perf/meson.build b/app/test-crypto-perf/meson.build index 7b02b518f0..cf41a22a75 100644 --- a/app/test-crypto-perf/meson.build +++ b/app/test-crypto-perf/meson.build @@ -23,3 +23,11 @@ deps += ['cryptodev', 'net', 'security'] if dpdk_conf.has('RTE_CRYPTO_SCHEDULER') deps += 'crypto_scheduler' endif + +extra_flags = ['-Wno-vla'] + +foreach arg: extra_flags + if cc.has_argument(arg) + cflags += arg + endif +endforeach -- 2.47.0.vfs.0.3