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 5FC4645D48; Wed, 20 Nov 2024 01:39:30 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id EC67B42EC2; Wed, 20 Nov 2024 01:38:12 +0100 (CET) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id E917642E75 for ; Wed, 20 Nov 2024 01:37:47 +0100 (CET) Received: by linux.microsoft.com (Postfix, from userid 1213) id 3A008205A74D; Tue, 19 Nov 2024 16:37:45 -0800 (PST) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 3A008205A74D DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1732063066; bh=Sln0ecpjmkYYZvIWMH2OPgy+/dHFGneCR90n9hI1oHI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Sgq7gDCwwlNfP5fEr1tziqjRT8qxHRPcwSN5Y2TCD3OGNitYQD3WjGAokFYZ4Vgbo 7Anig+TtCGmbYQMV3D//1D/VRky0st2V0wBMNHcNrMmyqhqhlKuoCdyE6dnV9OODs0 Y8A938U1UBuHBxfIx4IUmrBj+r0OGZuv4fLoreYU= From: Andre Muezerie To: dev@dpdk.org Cc: Tyler Retzlaff Subject: [PATCH v8 18/21] build: enable vla warnings on Windows built code Date: Tue, 19 Nov 2024 16:37:25 -0800 Message-Id: <1732063048-12298-19-git-send-email-andremue@linux.microsoft.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1732063048-12298-1-git-send-email-andremue@linux.microsoft.com> References: <1713397319-26135-1-git-send-email-roretzla@linux.microsoft.com> <1732063048-12298-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 From: Tyler Retzlaff MSVC does not support optional C11 VLAs. When building for Windows enable -Wvla so that mingw and clang also fail if a VLA is used. Signed-off-by: Tyler Retzlaff --- config/meson.build | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/config/meson.build b/config/meson.build index 6aaad6d8a4..ebca19b4e5 100644 --- a/config/meson.build +++ b/config/meson.build @@ -342,6 +342,10 @@ if cc.get_id() == 'intel' warning_flags += '-diag-disable=@0@'.format(i) endforeach endif +# no VLAs in code built on Windows +if is_windows + warning_flags += '-Wvla' +endif foreach arg: warning_flags if cc.has_argument(arg) add_project_arguments(arg, language: 'c') -- 2.47.0.vfs.0.3