From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 46475A0613 for ; Wed, 25 Sep 2019 20:01:15 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 4E5059E4; Wed, 25 Sep 2019 20:01:14 +0200 (CEST) Received: from mail-wr1-f67.google.com (mail-wr1-f67.google.com [209.85.221.67]) by dpdk.org (Postfix) with ESMTP id 378E891; Wed, 25 Sep 2019 20:01:13 +0200 (CEST) Received: by mail-wr1-f67.google.com with SMTP id l11so7999454wrx.5; Wed, 25 Sep 2019 11:01:13 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:message-id:subject:from:to:cc:date:in-reply-to :references:content-transfer-encoding:user-agent:mime-version; bh=Vc9VebVeT9g4vUuCX8eYuvq/uiogdchhNHwKKHi14sA=; b=aajl6befjzXEnsgQQ7toAk9NL2sxp9dPJn3o75ejZ11qIbWC0YDTaVfZ9G1u6w+tXI uRGSJiKj1BUy0kXwcD4oiqYDxjIBANVvjzzLIwJ7TDKT5heyAhkjcf3u/ikJPlkOslkS OYyhb44dkPXrnUuhZ43tEkXYj1uzO5+kZ7gEs+pJO4I+uZSL+dfvGx/qiRyWiJGZFZu3 kdFd9NAB5klT+cI98QEg5rn/RYgTpNBSVVFYJT9dIagpXshE5rV0gtq3bEgi/hIoS+J1 j9wLIV1nRGC/Ht+y1IY1lfFPFgzdLxzNyCom98F1hegoff6Vnkr1hVkaCQ1ELKtnDUkS hRvg== X-Gm-Message-State: APjAAAUrT1ADWUzCWQ5p5ThJ5sB26t6SPXjBVRGIKdUcSlw6Uq9FdeHJ VjNPqkCL597TLDMGHY1sCkU= X-Google-Smtp-Source: APXvYqxEqELPLnTwuXMW6khnULlHTkdKvINbcdJn7CNX9VzmVw3tL/lpm/Ot2Zefc6Zd5bzpNBKxFg== X-Received: by 2002:a05:6000:1082:: with SMTP id y2mr10647994wrw.77.1569434472714; Wed, 25 Sep 2019 11:01:12 -0700 (PDT) Received: from localhost ([2a01:4b00:f419:6f00:7a8e:ed70:5c52:ea3]) by smtp.gmail.com with ESMTPSA id 33sm10548135wra.41.2019.09.25.11.01.10 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 25 Sep 2019 11:01:11 -0700 (PDT) Message-ID: From: Luca Boccassi To: Bruce Richardson , dev@dpdk.org Cc: thomas@monjalon.net, mb@smartsharesystems.com, techboard@dpdk.org Date: Wed, 25 Sep 2019 19:01:10 +0100 In-Reply-To: <20190925145531.52705-1-bruce.richardson@intel.com> References: <20190925145531.52705-1-bruce.richardson@intel.com> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable User-Agent: Evolution 3.30.5-1.1 MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH 0/3] RFC: Support disabling DPDK drivers in meson builds X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Wed, 2019-09-25 at 15:55 +0100, Bruce Richardson wrote: > Following on from the discussion about meson at userspace 2019, here > is > a patchset which allows a user to disable drivers in a DPDK build. > This > set also includes the changes necessary to recursively disable any > drivers that depend upon the disabled one, e.g. disabling > mempool/dpaa > also disables net/dpaa and event/dpaa with suitable reasons provided > in > the output summary at the end of the meson configuration phase. >=20 > A number of changes are made to the lib/meson.build file too, in > order > to keep the general logic flow between drivers/meson.build and > lib/meson.build as similar as possible. >=20 > Example of use: >=20 > meson -Ddisable_drivers=3Dmempool/dpaa,net/i40e build >=20 > Bruce Richardson (3): > build: align variable names between drivers and libs > build: process dependencies before main build check > build: support disabling drivers with meson >=20 > drivers/meson.build | 45 +++++++++++++++++++++++++++-------------- > ---- > lib/meson.build | 23 +++++++++++++---------- > meson_options.txt | 2 ++ > 3 files changed, 42 insertions(+), 28 deletions(-) Series-grumbly-acked-by: Luca Boccassi --=20 Kind regards, Luca Boccassi