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 4BC254614D; Thu, 30 Jan 2025 22:57:14 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id D9B1B41104; Thu, 30 Jan 2025 22:56:06 +0100 (CET) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 748154025A for ; Thu, 30 Jan 2025 22:55:45 +0100 (CET) Received: by linux.microsoft.com (Postfix, from userid 1213) id A048D210C320; Thu, 30 Jan 2025 13:55:43 -0800 (PST) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com A048D210C320 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1738274144; bh=2gZTN5NtboxN05c2JZjqZJLFnw7QuVTpt5vaoocBKaY=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=sM55VOWW4XHnBjY6oYEQ/wFzIPWlOTtHGBd7PSM0c2BO88Ph4HVfE8WPGV4tkbtRw /ksnrsTdLuXnFaWMj/parwKieAmQbbqkvnPFuL8uGCdrWzO8tYeeMyB0GAikpNtpb3 6uU8nTH3X22hgt6lIrex2b6ALgJJ0UBqypKQqjd4= From: Andre Muezerie To: dev@dpdk.org Cc: konstantin.ananyev@huawei.com, thomas@monjalon.net, david.marchand@redhat.com, Andre Muezerie Subject: [PATCH v18 21/26] config: define no_vla_cflag Date: Thu, 30 Jan 2025 13:55:30 -0800 Message-Id: <1738274135-2086-22-git-send-email-andremue@linux.microsoft.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1738274135-2086-1-git-send-email-andremue@linux.microsoft.com> References: <1713397319-26135-1-git-send-email-roretzla@linux.microsoft.com> <1738274135-2086-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 We define no_vla_cflag in a top directory so that it can be used by meson.build files in lower directories that are not yet VLA-free. Signed-off-by: Andre Muezerie --- config/meson.build | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/config/meson.build b/config/meson.build index 6aaad6d8a4..6be928e04b 100644 --- a/config/meson.build +++ b/config/meson.build @@ -342,6 +342,14 @@ if cc.get_id() == 'intel' warning_flags += '-diag-disable=@0@'.format(i) endforeach endif + +no_vla_cflag = [] +if cc.has_argument('-Wvla') + if not is_windows + no_vla_cflag = '-Wno-vla' + endif +endif + foreach arg: warning_flags if cc.has_argument(arg) add_project_arguments(arg, language: 'c') -- 2.47.2.vfs.0.1