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 468E7A0351; Mon, 17 Aug 2020 15:54:29 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 9CFE41C0BC; Mon, 17 Aug 2020 15:54:28 +0200 (CEST) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id 5DA111C05C for ; Mon, 17 Aug 2020 15:54:27 +0200 (CEST) IronPort-SDR: GqvvpcBC4wiI5IB282i1Yq4QqBl9BzjolrRW4UbdcTdnZKRRbQjLrGOPOAu7C98NnJMubGurK5 HOUD3eodBouw== X-IronPort-AV: E=McAfee;i="6000,8403,9715"; a="155795144" X-IronPort-AV: E=Sophos;i="5.76,322,1592895600"; d="scan'208";a="155795144" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Aug 2020 06:54:26 -0700 IronPort-SDR: A3WHKFx1osP54qBX/dGoXlZjTJxPCcl7bUIwb5AshiLSQ1szg/lhDFrx4bZh+K7ACPJKKBQEU0 YTLZCxAxyvmQ== X-IronPort-AV: E=Sophos;i="5.76,322,1592895600"; d="scan'208";a="440872267" Received: from bricha3-mobl.ger.corp.intel.com ([10.252.17.138]) by orsmga004-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-SHA; 17 Aug 2020 06:54:25 -0700 Date: Mon, 17 Aug 2020 14:54:21 +0100 From: Bruce Richardson To: Ciara Power Cc: dev@dpdk.org, thomas@monjalon.net Message-ID: <20200817135421.GB496@bricha3-MOBL.ger.corp.intel.com> References: <20200807123009.21266-1-ciara.power@intel.com> <20200807123009.21266-17-ciara.power@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200807123009.21266-17-ciara.power@intel.com> Subject: Re: [dpdk-dev] [PATCH 20.11 16/19] doc: remove references to make in prog guides 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 Fri, Aug 07, 2020 at 01:30:06PM +0100, Ciara Power wrote: > Make is no longer supported for compiling DPDK, references are now > removed in the documentation. > > Signed-off-by: Ciara Power > --- > doc/guides/prog_guide/build_app.rst | 46 +--- > .../prog_guide/dev_kit_build_system.rst | 218 +----------------- > .../prog_guide/dev_kit_root_make_help.rst | 188 --------------- > .../prog_guide/env_abstraction_layer.rst | 17 +- > .../prog_guide/ext_app_lib_make_help.rst | 25 +- > doc/guides/prog_guide/graph_lib.rst | 6 +- > doc/guides/prog_guide/intro.rst | 2 +- > .../prog_guide/ip_fragment_reassembly_lib.rst | 5 - > .../link_bonding_poll_mode_drv_lib.rst | 5 - > doc/guides/prog_guide/lto.rst | 13 +- > doc/guides/prog_guide/mbuf_lib.rst | 4 +- > doc/guides/prog_guide/mempool_lib.rst | 7 +- > doc/guides/prog_guide/overview.rst | 12 +- > doc/guides/prog_guide/profile_app.rst | 15 +- > doc/guides/prog_guide/qos_framework.rst | 10 +- > doc/guides/prog_guide/rcu_lib.rst | 7 +- > doc/guides/prog_guide/source_org.rst | 23 +- > doc/guides/prog_guide/trace_lib.rst | 3 +- > .../prog_guide/writing_efficient_code.rst | 3 +- > 19 files changed, 36 insertions(+), 573 deletions(-) > delete mode 100644 doc/guides/prog_guide/dev_kit_root_make_help.rst > > diff --git a/doc/guides/prog_guide/dev_kit_build_system.rst b/doc/guides/prog_guide/dev_kit_build_system.rst > index 74dba4dd16..91d2120e22 100644 > --- a/doc/guides/prog_guide/dev_kit_build_system.rst > +++ b/doc/guides/prog_guide/dev_kit_build_system.rst > @@ -31,51 +31,17 @@ Each build directory contains include files, libraries, and applications. > A build directory is specific to a configuration that includes architecture + execution environment + toolchain. > It is possible to have several build directories sharing the same sources with different configurations. > > -For instance, to create a new build directory called my_sdk_build_dir using the default configuration template config/defconfig_x86_64-linux, > -we use: > - Rather than selectively removing parts of this file and then looking to replace them with meson equivalents, I think we should just completely remove this section. The info for using the build system and the variables that meson uses are already covered in the contributors guide (section 1.11 specifically).