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 1175C4605F; Fri, 10 Jan 2025 21:28:36 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 2F42842E9C; Fri, 10 Jan 2025 21:25:04 +0100 (CET) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 0C135427DC for ; Fri, 10 Jan 2025 21:24:02 +0100 (CET) Received: by linux.microsoft.com (Postfix, from userid 1213) id 46A0A2047232; Fri, 10 Jan 2025 12:23:59 -0800 (PST) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 46A0A2047232 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1736540641; bh=+JGXa7xZs0OD+2fVKC//AkEvoi6JaCxxIqvV3lAT0jA=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=nQIarnG7J19O5fIl5XgMs7jLlQHsdi+o1atL4wJhCe8oflpVakG0r86DPxtIJ7mIf kAyemB/AdLErQVAtnlVQlViBMahDGumsEKkgpqxD+NFqxvhxFiMaNIOEsHZnd3PCeC ZARhQ3/9u2RNBnCiRS9wyNtunLC+DDw1SqJA0qJQ= From: Andre Muezerie To: dev@dpdk.org Cc: konstantin.ananyev@huawei.com, homas@monjalon.net, david.marchand@redhat.com, Andre Muezerie Subject: [PATCH v14 40/81] lib/dmadev: add compile warning about use of VLAs Date: Fri, 10 Jan 2025 12:22:59 -0800 Message-Id: <1736540620-21764-41-git-send-email-andremue@linux.microsoft.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1736540620-21764-1-git-send-email-andremue@linux.microsoft.com> References: <1713397319-26135-1-git-send-email-roretzla@linux.microsoft.com> <1736540620-21764-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 --- lib/dmadev/meson.build | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lib/dmadev/meson.build b/lib/dmadev/meson.build index e66dcb66b0..61c99696ae 100644 --- a/lib/dmadev/meson.build +++ b/lib/dmadev/meson.build @@ -13,3 +13,11 @@ indirect_headers += files('rte_dmadev_core.h', 'rte_dmadev_trace_fp.h') driver_sdk_headers += files('rte_dmadev_pmd.h') deps += ['telemetry'] + +extra_flags = ['-Wvla'] + +foreach arg: extra_flags + if cc.has_argument(arg) + cflags += arg + endif +endforeach -- 2.47.0.vfs.0.3