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 130FAA0C41; Wed, 17 Nov 2021 12:29:43 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id EFFEC411A4; Wed, 17 Nov 2021 12:29:42 +0100 (CET) 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 967BC4116D for ; Wed, 17 Nov 2021 12:29:41 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1637148581; 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=3X1eIvZMXrkb+gjULgCPkq002yefb1tu7J+zFdL8lKU=; b=G8PSbW8gZwym5comtXOaV40YIP8mmWAZ2PDizg/Do7XI7EXAjUEaVtqnIoSltHhffY05xm T24fKnR0AoviKusYoiH8uonxOf91zc4CnNG3V97q/Mv54goKdJm1W0ocT1i6326VbpD3Xx 0aZ/FIhxnDdXAqzfkVj7KkT576GvmuY= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-222-m_XZkuRqMMC8DAx0GWFXXg-1; Wed, 17 Nov 2021 06:29:35 -0500 X-MC-Unique: m_XZkuRqMMC8DAx0GWFXXg-1 Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.23]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 638C718125C0; Wed, 17 Nov 2021 11:29:34 +0000 (UTC) Received: from dmarchan.remote.csb (unknown [10.40.192.8]) by smtp.corp.redhat.com (Postfix) with ESMTP id DA8AF1F46B; Wed, 17 Nov 2021 11:28:59 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: bruce.richardson@intel.com, thomas@monjalon.net, bluca@debian.org, tredaelli@redhat.com, i.maximets@ovn.org, james.r.harris@intel.com, mohammed@hawari.fr Subject: [PATCH v2 0/5] Extend optional libraries list Date: Wed, 17 Nov 2021 12:28:42 +0100 Message-Id: <20211117112847.7362-1-david.marchand@redhat.com> In-Reply-To: <20211110164814.5231-1-david.marchand@redhat.com> References: <20211110164814.5231-1-david.marchand@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.84 on 10.5.11.23 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=david.marchand@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" 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 extends the optional libraries list adding to them testpmd non essential dependencies. We were not testing the disable_libs option, so let's add a minimum target in the the public CI script (mainly for GHA) and in test-meson-builds.sh script. The last patch is an idea for enhancing the optional libraries selection. -- David Marchand Changes since v1: - only touched patch1, David Marchand (5): ci: test minimum configuration build: make GRO/GSO optional build: make metrics libraries optional build: make pdump optional build: select optional libraries .ci/linux-build.sh | 4 ++++ .github/workflows/build.yml | 5 +++++ app/meson.build | 18 ++++++++++----- app/proc-info/main.c | 16 +++++++++++++ app/proc-info/meson.build | 5 ++++- app/test-pmd/cmdline.c | 14 ++++++++++++ app/test-pmd/config.c | 6 +++++ app/test-pmd/csumonly.c | 35 ++++++++++++++++++++++++----- app/test-pmd/meson.build | 11 ++++++++- app/test-pmd/testpmd.c | 18 +++++++++++++++ app/test-pmd/testpmd.h | 18 +++++++++++++++ app/test/meson.build | 34 ++++++++++++++++------------ buildtools/chkincs/meson.build | 2 +- devtools/test-meson-builds.sh | 3 +++ lib/meson.build | 41 +++++++++++++++++++++------------- meson.build | 3 ++- meson_options.txt | 2 ++ 17 files changed, 190 insertions(+), 45 deletions(-) -- 2.23.0