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 D2B8646079; Tue, 14 Jan 2025 03:39:17 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 8B12C427D5; Tue, 14 Jan 2025 03:34:00 +0100 (CET) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 7D03340A79 for ; Tue, 14 Jan 2025 03:32:46 +0100 (CET) Received: by linux.microsoft.com (Postfix, from userid 1213) id BEE1F2043F3C; Mon, 13 Jan 2025 18:32:44 -0800 (PST) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com BEE1F2043F3C DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1736821965; bh=uBi/gKmlqaiB0ptntNWHHxBgmlboM8ETF9zD+/jzEBA=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=KokM3bHghmIlhin5bjHSyIZZCjSORhKxzOEQdmgxNvRQ7L7+cv3U9QER57Oo5nZBt ZbzgIHx4NPwD7c0/RKPlb18o1XqxPh5MtD7K8+YLP1PKAmHI4WfmkVdm2dFrFRfFi5 7kq+/e09INXyS7uH06gnudj2LRv8of6OLgg40yZQ= From: Andre Muezerie To: dev@dpdk.org Cc: konstantin.ananyev@huawei.com, thomas@monjalon.net, david.marchand@redhat.com, Andre Muezerie Subject: [PATCH v16 54/60] table: disable warning about use of VLAs Date: Mon, 13 Jan 2025 18:32:32 -0800 Message-Id: <1736821958-3295-55-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 This path is known to make use of VLAs, so we need to disable warnings issued for VLAs to prevent the build from breaking. Signed-off-by: Andre Muezerie --- lib/table/meson.build | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lib/table/meson.build b/lib/table/meson.build index 9b3d9ac759..f15796f063 100644 --- a/lib/table/meson.build +++ b/lib/table/meson.build @@ -1,6 +1,14 @@ # SPDX-License-Identifier: BSD-3-Clause # Copyright(c) 2017 Intel Corporation +extra_flags = ['-Wno-vla'] + +foreach arg: extra_flags + if cc.has_argument(arg) + cflags += arg + endif +endforeach + sources = files( 'rte_swx_keycmp.c', 'rte_swx_table_em.c', -- 2.47.0.vfs.0.3