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 577004605F; Fri, 10 Jan 2025 21:26:59 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id EAA8B42E4A; Fri, 10 Jan 2025 21:24:41 +0100 (CET) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 9B7CD427C9 for ; Fri, 10 Jan 2025 21:24:01 +0100 (CET) Received: by linux.microsoft.com (Postfix, from userid 1213) id 0FF34203D609; Fri, 10 Jan 2025 12:23:59 -0800 (PST) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 0FF34203D609 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1736540640; bh=rjMhjq4kZRaW9q+6aKegywkOimDHKzI9yzLYO0obDX0=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=HrWqvF9S+GgaEshrsFvT31NxBxOsbFnk2d8v/cnbFFnZRCzn/bjZGCyvz4vmFW1gs FEX5qdKiHdF6chwRY+ralkhdpJ2Iz2uJGgvvUY4pmncp2pSV5C+LBp5hsqE89dLima RqMMa3gj75X+WQA0IF3s97pIuBPfBKq1LfvSMMDI= From: Andre Muezerie To: dev@dpdk.org Cc: konstantin.ananyev@huawei.com, homas@monjalon.net, david.marchand@redhat.com, Andre Muezerie Subject: [PATCH v14 24/81] app/test-cmdline: add compile warning about use of VLAs Date: Fri, 10 Jan 2025 12:22:43 -0800 Message-Id: <1736540620-21764-25-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 --- app/test-cmdline/meson.build | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/app/test-cmdline/meson.build b/app/test-cmdline/meson.build index 6027f67919..06813ff1f5 100644 --- a/app/test-cmdline/meson.build +++ b/app/test-cmdline/meson.build @@ -9,3 +9,11 @@ endif sources = files('commands.c', 'cmdline_test.c') deps += 'cmdline' + +extra_flags = ['-Wvla'] + +foreach arg: extra_flags + if cc.has_argument(arg) + cflags += arg + endif +endforeach -- 2.47.0.vfs.0.3