From patchwork Tue Aug 15 13:13:20 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bruce Richardson X-Patchwork-Id: 130345 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 430F543070; Tue, 15 Aug 2023 15:13:53 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 18767432A4; Tue, 15 Aug 2023 15:13:46 +0200 (CEST) Received: from mgamail.intel.com (mgamail.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 30E644327E; Tue, 15 Aug 2023 15:13:40 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1692105221; x=1723641221; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=wZ3hawrOmI6Tgvf+krNNLy58V6/qGEhcZ5c+cMtY8XQ=; b=bs7EHvR1lyTq1Y5+UG5SQtFb2NRGsoGEg1ozzVG10MUc/cxwkcDSbRzu 0FD12bah7aAjuL+CDsjhYcFi2AJq4cWE80tGY8+J0+87cAY3tcYT54Kjs mmntcsLUmeNA5rK4x19zg2A0VoNjvgwRNIA80FEBtM0GGbknj2MeHXrue 9vUa/mLZfOHNSFrfyJwoUNmufNyWvs9vLGmSDm0IbnNJfDFNV7uUjuFIT LV6DsEIiLXtWRvwsEmjOjUVuhtq7SlC18zjs+JkRJtjrjH/BPUMRxDL+g ULSdKe5RjixL4UVQUs2IabCnU9di3cwYFXZej7OJhFL+3ncfnEwRmNeAa A==; X-IronPort-AV: E=McAfee;i="6600,9927,10803"; a="458623177" X-IronPort-AV: E=Sophos;i="6.01,174,1684825200"; d="scan'208";a="458623177" Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 15 Aug 2023 06:13:40 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10803"; a="799189862" X-IronPort-AV: E=Sophos;i="6.01,174,1684825200"; d="scan'208";a="799189862" Received: from silpixa00401385.ir.intel.com ([10.237.214.14]) by fmsmga008.fm.intel.com with ESMTP; 15 Aug 2023 06:13:39 -0700 From: Bruce Richardson To: dev@dpdk.org Cc: ci@dpdk.org, Bruce Richardson Subject: [PATCH v4 8/8] build: expand list of optional libraries Date: Tue, 15 Aug 2023 14:13:20 +0100 Message-Id: <20230815131320.375088-9-bruce.richardson@intel.com> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20230815131320.375088-1-bruce.richardson@intel.com> References: <20230721115125.55137-1-bruce.richardson@intel.com> <20230815131320.375088-1-bruce.richardson@intel.com> MIME-Version: 1.0 X-BeenThere: ci@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK CI discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: ci-bounces@dpdk.org With the unit test build now with individual per-file dependencies, we can more easily expand the list of optional libraries. Add 8 new libraries to the optional list. Signed-off-by: Bruce Richardson --- lib/meson.build | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lib/meson.build b/lib/meson.build index 1a78c8c984..0c9dc8b3b6 100644 --- a/lib/meson.build +++ b/lib/meson.build @@ -69,25 +69,33 @@ libraries = [ optional_libs = [ 'bbdev', 'bitratestats', + 'bpf', 'cfgfile', 'compressdev', + 'distributor', 'dmadev', + 'efd', 'eventdev', 'gpudev', 'graph', 'gro', 'gso', + 'ip_frag', 'jobstats', 'latencystats', + 'member', 'metrics', 'mldev', 'node', + 'pcapng', 'pdump', 'pipeline', 'port', 'power', 'rawdev', 'regexdev', + 'reorder', + 'sched', 'table', 'vhost', ]