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 19318A04F1 for ; Thu, 18 Jun 2020 11:07:40 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 035201BE9E; Thu, 18 Jun 2020 11:07:40 +0200 (CEST) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by dpdk.org (Postfix) with ESMTP id 27BCA5B3A for ; Thu, 18 Jun 2020 11:07:37 +0200 (CEST) IronPort-SDR: n3BgyInoITYfIt07F5Qrk4aLY7qNro7inPZnapyWnmw0sO/EJiMtluSxIUkIP4gSjzmz0Yv8gD UYqXWCVLHeQg== X-IronPort-AV: E=McAfee;i="6000,8403,9655"; a="122245567" X-IronPort-AV: E=Sophos;i="5.73,526,1583222400"; d="scan'208";a="122245567" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 18 Jun 2020 02:07:37 -0700 IronPort-SDR: NKgL32cz6VafkFl29Yl0uDxHWFmUhc5oUufnUtI/kExLTI/7gro2tUMfua9yg2IXXOVSKBHJTv Jj7WwBegJQwQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.73,526,1583222400"; d="scan'208";a="299601337" Received: from irsmsx151.ger.corp.intel.com ([163.33.192.59]) by fmsmga004.fm.intel.com with ESMTP; 18 Jun 2020 02:07:36 -0700 Received: from irsmsx103.ger.corp.intel.com ([169.254.3.245]) by IRSMSX151.ger.corp.intel.com ([169.254.4.145]) with mapi id 14.03.0439.000; Thu, 18 Jun 2020 10:07:36 +0100 From: "Richardson, Bruce" To: Thomas Monjalon CC: "web@dpdk.org" Thread-Topic: [dpdk-web] [PATCH] update quick start page Thread-Index: AQHWROcZTx9RTRB9GkGqj/9lLa8XiKjeCLiA///3uoCAABR98A== Date: Thu, 18 Jun 2020 09:07:35 +0000 Message-ID: <59AF69C657FD0841A61C55336867B5B09769328B@IRSMSX103.ger.corp.intel.com> References: <20200617203700.3576668-1-thomas@monjalon.net> <59AF69C657FD0841A61C55336867B5B0976930D6@IRSMSX103.ger.corp.intel.com> <28780933.PtU9Tt3Mu2@thomas> In-Reply-To: <28780933.PtU9Tt3Mu2@thomas> Accept-Language: en-GB, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: dlp-product: dlpe-windows dlp-version: 11.2.0.6 dlp-reaction: no-action x-originating-ip: [163.33.239.181] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-web] [PATCH] update quick start page X-BeenThere: web@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK website maintenance List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: web-bounces@dpdk.org Sender: "web" > -----Original Message----- > From: Thomas Monjalon > Sent: Thursday, June 18, 2020 9:50 AM > To: Richardson, Bruce > Cc: web@dpdk.org > Subject: Re: [dpdk-web] [PATCH] update quick start page >=20 > 18/06/2020 10:21, Richardson, Bruce: > > From: Thomas Monjalon > > > --- a/content/doc/quick-start.md > > > +++ b/content/doc/quick-start.md > > > - make > > > + meson -Dexamples=3Dall build > > > > Do we really want building all examples to be part of the default > instructions? It will lead to a longer build time? > > I think we should give initial instructions just with meson build, and > then afterwards show building examples. >=20 > How do you suggest is the best to compile examples in a second step? > meson configure -Dexamples=3Dall ? >=20 >=20 No rather than an additional step, I think showing it as an alternative set of instructions might work well. Something like: """ To build the DPDK libraries, drivers and test applications use: meson build ninja -C build To include the examples as part of the build, the -Dexamples flag can be passed to meson, with a comma-separated list of the desired examples, or 'all' to indicate all buildable examples. For example: meson -Dexamples=3Dall build ninja -C build """