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 D056546079; Tue, 14 Jan 2025 03:34:43 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id ECA4140B90; Tue, 14 Jan 2025 03:33:09 +0100 (CET) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 7926240671 for ; Tue, 14 Jan 2025 03:32:45 +0100 (CET) Received: by linux.microsoft.com (Postfix, from userid 1213) id 5ACFE2043F20; Mon, 13 Jan 2025 18:32:43 -0800 (PST) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 5ACFE2043F20 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1736821964; bh=7FXEMEs6huFODowlnW60hN5bAdGb2svitE9MzV51LJw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=J89XUiEoHaxwVwXi6IXUsknDkeCiQbt0dZ5MQSlENjlsXTqZ/ie/hVC7GhCevAiEe Z9S+Wo9IeuU8BfEYuT4y55G/9uJudUVEVV5KXharPT9m5oaXHUmRHREeM96m2jjEM7 9PpPQ8M/FMguHO5tsbBF59JhYm2YwB3DeCkmAJqg= From: Andre Muezerie To: dev@dpdk.org Cc: konstantin.ananyev@huawei.com, thomas@monjalon.net, david.marchand@redhat.com, Andre Muezerie Subject: [PATCH v16 30/60] app/test-pmd: check compiler supports flag when adding to set Date: Mon, 13 Jan 2025 18:32:08 -0800 Message-Id: <1736821958-3295-31-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 is done so that multiple compilers can be supported. Signed-off-by: Andre Muezerie --- app/test-pmd/meson.build | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/app/test-pmd/meson.build b/app/test-pmd/meson.build index f1c36529b4..8de1528428 100644 --- a/app/test-pmd/meson.build +++ b/app/test-pmd/meson.build @@ -3,7 +3,15 @@ # override default name to drop the hyphen name = 'testpmd' -cflags += '-Wno-deprecated-declarations' + +extra_flags = ['-Wno-deprecated-declarations'] + +foreach arg: extra_flags + if cc.has_argument(arg) + cflags += arg + endif +endforeach + sources = files( '5tswap.c', 'cmdline.c', -- 2.47.0.vfs.0.3