From patchwork Mon Aug 14 15:16:09 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bruce Richardson X-Patchwork-Id: 130277 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 4F18943063; Mon, 14 Aug 2023 17:16:41 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 02AA6432E2; Mon, 14 Aug 2023 17:16:34 +0200 (CEST) Received: from mgamail.intel.com (mgamail.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id 202DE432D2; Mon, 14 Aug 2023 17:16:30 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1692026191; x=1723562191; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=wZ3hawrOmI6Tgvf+krNNLy58V6/qGEhcZ5c+cMtY8XQ=; b=WKNw2qtewO0lpJAk4lGOIDqYp2Z2lyTYS9/LuLt64YqTUMSmlfvCrIfj uOCZZ4K3u4Y/qWrEZTHnY9poQpGlUmlc8Z5v2fQM3Z+tTD/B12GMyORBY 4NooR6yYiRukfy5q5JZfhdFLsQzVOHnVUX7Dn9nz93m4lKccK7fnx99SJ AZ5A9ffuC7S6FKAVoESZyL/GY1aJYzyoeKlKO8Jf4eRXYuSVQSrwFihk9 VCpoHIua39yIesPkLpcnQzBDLlqqkMwTgh21q5ux6REs2vCszEDVCl3OA xfzbIJtvcJzdz3wxTZM/PWRY4VUqrBrXtOlc6d3WIJEX/7Q++zxRThU15 Q==; X-IronPort-AV: E=McAfee;i="6600,9927,10802"; a="362211308" X-IronPort-AV: E=Sophos;i="6.01,172,1684825200"; d="scan'208";a="362211308" Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Aug 2023 08:16:29 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10802"; a="803499986" X-IronPort-AV: E=Sophos;i="6.01,172,1684825200"; d="scan'208";a="803499986" Received: from silpixa00401385.ir.intel.com ([10.237.214.14]) by fmsmga004.fm.intel.com with ESMTP; 14 Aug 2023 08:16:28 -0700 From: Bruce Richardson To: dev@dpdk.org Cc: ci@dpdk.org, Bruce Richardson Subject: [PATCH v2 8/8] build: expand list of optional libraries Date: Mon, 14 Aug 2023 16:16:09 +0100 Message-Id: <20230814151609.3077077-9-bruce.richardson@intel.com> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20230814151609.3077077-1-bruce.richardson@intel.com> References: <20230721115125.55137-1-bruce.richardson@intel.com> <20230814151609.3077077-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', ]