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 5D91C46079; Tue, 14 Jan 2025 03:35:20 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id C4FC640E50; Tue, 14 Jan 2025 03:33:17 +0100 (CET) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id B8EE54067E for ; Tue, 14 Jan 2025 03:32:45 +0100 (CET) Received: by linux.microsoft.com (Postfix, from userid 1213) id B067D2043F27; Mon, 13 Jan 2025 18:32:43 -0800 (PST) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com B067D2043F27 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1736821964; bh=VbhhjzceqtGyxndQeeRAlTSB3D/eVXdaWrgkWCzZPTE=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=M/ROdb0w2kWz5LaY/NMQybPJ/lcDI16DF8jPaNyELxTQBPlpYoWHII581k04EkyMQ Ko+GzTMkDSOy5YALYp2nZB0D4IiutgfuvWwvA3khWjBNnnHjn4lOoJkp3w/Hyn+OZY HgZ5JzOEfWEYZFiSX2dWw1wc2Vhk0YcG9/GKUoL4= From: Andre Muezerie To: dev@dpdk.org Cc: konstantin.ananyev@huawei.com, thomas@monjalon.net, david.marchand@redhat.com, Andre Muezerie Subject: [PATCH v16 37/60] drivers/mempool: add compile warning about use of VLAs Date: Mon, 13 Jan 2025 18:32:15 -0800 Message-Id: <1736821958-3295-38-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 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 --- drivers/mempool/meson.build | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/drivers/mempool/meson.build b/drivers/mempool/meson.build index dc88812585..4f74556eb5 100644 --- a/drivers/mempool/meson.build +++ b/drivers/mempool/meson.build @@ -14,3 +14,11 @@ drivers = [ std_deps = ['mempool'] log_prefix = 'mempool' + +extra_flags = ['-Wvla'] + +foreach arg: extra_flags + if cc.has_argument(arg) + cflags += arg + endif +endforeach -- 2.47.0.vfs.0.3