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 C9EB742D80; Wed, 28 Jun 2023 15:21:49 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id BAA9D42D0D; Wed, 28 Jun 2023 15:21:49 +0200 (CEST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by mails.dpdk.org (Postfix) with ESMTP id 7406942D0C for ; Wed, 28 Jun 2023 15:21:48 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1687958508; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=EFIbA2W3mSNMIQ4rYQ4sU8FHfkZKlAHLnr477eph8ZQ=; b=ATfR3Wx5Aun13k6iNyhVX6L63SFnrScoKtvO46WuaTxrKipQ8hWoAjeqHiiTQf1jiVMKO+ P83pcUwSjVIUZb+GDt92qZN16TPQUPDy89vzpmsoNnJLwOYLnu7RaJo67RxedNnGtA+p7g 4HPNh4TCGMMpz6AavBA+Z1+kINx+3BU= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-400-j15bVhblNx-vfSVeyrRDdQ-1; Wed, 28 Jun 2023 09:21:34 -0400 X-MC-Unique: j15bVhblNx-vfSVeyrRDdQ-1 Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.rdu2.redhat.com [10.11.54.1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 290ED18E52ED; Wed, 28 Jun 2023 13:20:09 +0000 (UTC) Received: from dmarchan.redhat.com (unknown [10.45.224.210]) by smtp.corp.redhat.com (Postfix) with ESMTP id 7AD7D40C2063; Wed, 28 Jun 2023 13:20:07 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: thomas@monjalon.net, bluca@debian.org, tredaelli@redhat.com, i.maximets@ovn.org, james.r.harris@intel.com, mohammed@hawari.fr Subject: [PATCH v5 0/2] Select optional libraries Date: Wed, 28 Jun 2023 15:20:02 +0200 Message-Id: <20230628132004.340074-1-david.marchand@redhat.com> In-Reply-To: <20211117112847.7362-6-david.marchand@redhat.com> References: <20211117112847.7362-6-david.marchand@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.1 on 10.11.54.1 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII"; x-default=true 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 series is one implementation to try and please users who want to select more easily which parts of DPDK are built. It introduces a change in behavior for enabling deprecated libraries: this series is aimed at the next release but sent early as a demo of what changes are required. If no strong opposition is met, a deprecation notice will be sent for v23.07 to announce this change in v23.11. Changes since v4: - rebased on main, - switched to a list of enabled deprecated libraries, Changes since v3: - split kni cleanup, - split variable rename cleanup, - introduced a new meson option to control deprecated libraries activation, - simplified the actual implementation of enable_libs to mimic enable_drivers behavior, -- David Marchand David Marchand (2): build: select deprecated libraries build: select optional libraries .ci/linux-build.sh | 2 +- devtools/test-meson-builds.sh | 8 +++--- lib/meson.build | 50 +++++++++++++++++++++++++---------- meson_options.txt | 8 ++++-- 4 files changed, 47 insertions(+), 21 deletions(-) -- 2.40.1