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 A1D00A0093; Thu, 13 Jan 2022 19:26:57 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 632904274C; Thu, 13 Jan 2022 19:26:57 +0100 (CET) Received: from mail-pj1-f51.google.com (mail-pj1-f51.google.com [209.85.216.51]) by mails.dpdk.org (Postfix) with ESMTP id 31BB14274A for ; Thu, 13 Jan 2022 19:26:56 +0100 (CET) Received: by mail-pj1-f51.google.com with SMTP id d10-20020a17090a498a00b001b33bc40d01so6097729pjh.1 for ; Thu, 13 Jan 2022 10:26:56 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20210112.gappssmtp.com; s=20210112; h=date:from:to:cc:subject:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=bdqXxM7vLrQRcZWeDzzzNWv/okn5yt2AOmIgiVINV4M=; b=SjgexmZKZEObZtcRWuz5kfl7eb/RtPRPnFvgwbszYjIpmp9ABeWNcSAqtozoqbIiOx gmn9AKFKn5qSnFU5bV+dSjKyCIcmIrzmMlbFAybuRfaHQEZDSzm6fU7NrU1n8mP5nOA6 V48xQ5mT9TpUMUT8Vb6Mp9kEkQAG83fx3xsjLng/tUvuHVfbon4NKTR89mKnHvGBtIAu YpZpCEDnrFs9r4QrOoq9hHHoBnxe33eMgcnTdjeFN1UgHYFHOLqBVvH6v9fYCdw8p+bP nJDNbpGyZ/Q2ii2yBFm0Ms7DuYt97s82p+hFTh9tXEHKvnd4Blo6JKr/j7IZAuLcVhFx RiEA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:date:from:to:cc:subject:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=bdqXxM7vLrQRcZWeDzzzNWv/okn5yt2AOmIgiVINV4M=; b=u0ArMjNErX1YwTOUaeBBa4nGQhQKpXfxo1SONUd0M6JKYymdVIpwwhePfX7LXAsHu/ +4/jfG6fXPxQ4DxwLT6dk2nxVmY6IZnJEJX1Co5s/ga/Xl50IOuJfiNyQRCEDDUElL7k aAEsOUBPoNPD290l73FAJkAWRwhJXtTH14QN+q9XV9WbBg7d2JKf3yHscrOELT602Ufo FCQtcdTsuIKGlVc/gyG2RVvRtC6uJFzX8G1GBxQDqEv7+tY7K30awq5yKhhGH8aZqr0T a+CDZNTeuqnGsyMn9OndCYMzWrcAS67bFOzOXeYBs5RWT0GWVH932kg8iR8aiq7p0sIy dIlg== X-Gm-Message-State: AOAM533qd9iIS5dWsb9PSZld+9gRtuqnGysOZ8vTlMoHEiXiSd27jPH2 Ke28OkbtZmlvKDLnAFgs96jYxTXlPq/khQ== X-Google-Smtp-Source: ABdhPJy1davyEvLjVeMPx/mI/WijbWp0bIWT/F3Y28tvX0br0iOfDHXB9+VbzCUDINlo9Z2+iTt6hg== X-Received: by 2002:a17:90a:c24d:: with SMTP id d13mr6397960pjx.238.1642098415295; Thu, 13 Jan 2022 10:26:55 -0800 (PST) Received: from hermes.local (204-195-112-199.wavecable.com. [204.195.112.199]) by smtp.gmail.com with ESMTPSA id d12sm3651757pfv.172.2022.01.13.10.26.54 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 13 Jan 2022 10:26:54 -0800 (PST) Date: Thu, 13 Jan 2022 10:26:52 -0800 From: Stephen Hemminger To: Bruce Richardson Cc: dev@dpdk.org Subject: Re: [PATCH 0/6] allow more DPDK libraries to be disabled on build Message-ID: <20220113102652.26c5ce7d@hermes.local> In-Reply-To: <20220113173918.2700651-1-bruce.richardson@intel.com> References: <20220113173918.2700651-1-bruce.richardson@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit 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 On Thu, 13 Jan 2022 17:39:12 +0000 Bruce Richardson wrote: > A common request on-list has been to allow more of the DPDK build to be disabled by those who are > doing their own builds and only use a subset of the libraries. To this end, this patchset makes some > infrastructure changes [first two patches] to make it easier to have libraries disabled, and then > adds a six libraries to the "optional" list. > > Bruce Richardson (6): > lib: allow recursive disabling of libs in build > app/test: link unit test binary against all available libs > build: add node library to optional list > build: add flow classification library to optional list > build: add "packet framework" libs to optional list > build: add cfgfile library to optional list > > app/test/meson.build | 74 ++++++++++++-------------------------------- > lib/meson.build | 30 ++++++++++++------ > 2 files changed, 40 insertions(+), 64 deletions(-) > > -- > 2.32.0 > Acked-by: Stephen Hemminger