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 33638A04F1 for ; Thu, 18 Jun 2020 10:21:19 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 0656B1BE9E; Thu, 18 Jun 2020 10:21:19 +0200 (CEST) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by dpdk.org (Postfix) with ESMTP id E8EF51BE97 for ; Thu, 18 Jun 2020 10:21:16 +0200 (CEST) IronPort-SDR: +kBH12DO6ZPk581T5zxerZA9GULjCTq1v+HEFtpIq92Xr3r4j3pXZ2Aoq9hyAd2RitJMoio0YQ eX3k8wcSfGoA== X-IronPort-AV: E=McAfee;i="6000,8403,9655"; a="122232200" X-IronPort-AV: E=Sophos;i="5.73,526,1583222400"; d="scan'208";a="122232200" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 18 Jun 2020 01:21:16 -0700 IronPort-SDR: TjCHUfmzgkPyEiCuvGnHXA/+cuv6y4J6H7VDf9mm1574sTHqNzZeXNrmnPpESUM667SAx0wQWn oeM7QixbBk/g== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.73,526,1583222400"; d="scan'208";a="263528254" Received: from irsmsx109.ger.corp.intel.com ([163.33.3.23]) by fmsmga008.fm.intel.com with ESMTP; 18 Jun 2020 01:21:15 -0700 Received: from irsmsx156.ger.corp.intel.com (10.108.20.68) by IRSMSX109.ger.corp.intel.com (163.33.3.23) with Microsoft SMTP Server (TLS) id 14.3.439.0; Thu, 18 Jun 2020 09:21:14 +0100 Received: from irsmsx103.ger.corp.intel.com ([169.254.3.245]) by IRSMSX156.ger.corp.intel.com ([169.254.3.157]) with mapi id 14.03.0439.000; Thu, 18 Jun 2020 09:21:14 +0100 From: "Richardson, Bruce" To: Thomas Monjalon , "web@dpdk.org" Thread-Topic: [dpdk-web] [PATCH] update quick start page Thread-Index: AQHWROcZTx9RTRB9GkGqj/9lLa8XiKjeCLiA Date: Thu, 18 Jun 2020 08:21:13 +0000 Message-ID: <59AF69C657FD0841A61C55336867B5B0976930D6@IRSMSX103.ger.corp.intel.com> References: <20200617203700.3576668-1-thomas@monjalon.net> In-Reply-To: <20200617203700.3576668-1-thomas@monjalon.net> 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: web On Behalf Of Thomas Monjalon > Sent: Wednesday, June 17, 2020 9:37 PM > To: web@dpdk.org > Subject: [dpdk-web] [PATCH] update quick start page >=20 > Use meson instead of make. > Remove -n EAL option. >=20 > Signed-off-by: Thomas Monjalon > --- > content/doc/quick-start.md | 20 ++++---------------- > 1 file changed, 4 insertions(+), 16 deletions(-) >=20 > diff --git a/content/doc/quick-start.md b/content/doc/quick-start.md inde= x > fdffa98..1ecc8b8 100644 > --- a/content/doc/quick-start.md > +++ b/content/doc/quick-start.md > @@ -11,17 +11,11 @@ Extract sources > cd dpdk > ``` >=20 > -Enable pcap (libpcap headers are required). > +Build libraries, tests and examples applications. >=20 > ``` > - make config T=3Dx86_64-native-linuxapp-gcc > - sed -ri 's,(PMD_PCAP=3D).*,\1y,' build/.config -``` > - > -Build libraries and test application (Linux headers may be needed with > default config). > - > -``` > - make > + meson -Dexamples=3Dall build Do we really want building all examples to be part of the default instructi= ons? 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.