From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by dpdk.org (Postfix) with ESMTP id 9ED681C81F for ; Fri, 6 Apr 2018 14:10:58 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by orsmga106.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 06 Apr 2018 05:10:56 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.48,415,1517904000"; d="scan'208";a="218127864" Received: from irsmsx106.ger.corp.intel.com ([163.33.3.31]) by fmsmga006.fm.intel.com with ESMTP; 06 Apr 2018 05:10:55 -0700 Received: from irsmsx101.ger.corp.intel.com ([169.254.1.176]) by IRSMSX106.ger.corp.intel.com ([169.254.8.37]) with mapi id 14.03.0319.002; Fri, 6 Apr 2018 13:10:54 +0100 From: "Van Haaren, Harry" To: "Richardson, Bruce" , "dev@dpdk.org" CC: "hemant.agrawal@nxp.com" , "shreyansh.jain@nxp.com" , "Richardson, Bruce" Thread-Topic: [dpdk-dev] [PATCH 0/6] enable easier app compilation testing with meson Thread-Index: AQHTx2WR4qePYVYzl0+i6oESxI8asqPzsPVw Date: Fri, 6 Apr 2018 12:10:54 +0000 Message-ID: References: <20180329135436.92878-1-bruce.richardson@intel.com> In-Reply-To: <20180329135436.92878-1-bruce.richardson@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiMjlmYzY3YzYtMjE2Ny00ZmE4LWIyMzYtYzU2YzdlYTc4MmUwIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX05UIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE3LjIuNS4xOCIsIlRydXN0ZWRMYWJlbEhhc2giOiJXUGFPWjY2UFZHOTJMeStOWitsVVBPenRneXNzSU9IQUxlRjBpY05SMklZSlRuTHpRcFJEbGhDUnFhZW9jZVdnIn0= x-ctpclassification: CTP_NT dlp-product: dlpe-windows dlp-version: 11.0.200.100 dlp-reaction: no-action x-originating-ip: [163.33.239.182] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH 0/6] enable easier app compilation testing with meson 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: , X-List-Received-Date: Fri, 06 Apr 2018 12:10:59 -0000 > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Bruce Richardson > Sent: Thursday, March 29, 2018 2:55 PM > To: dev@dpdk.org > Cc: hemant.agrawal@nxp.com; shreyansh.jain@nxp.com; Richardson, Bruce > > Subject: [dpdk-dev] [PATCH 0/6] enable easier app compilation testing wit= h > meson >=20 > Summary: > With this set you can test building all applicable examples by > calling meson with "-Dexamples=3Dall" >=20 > When building DPDK with meson, it's possible to specify a list of sample > apps to have built along with the main code. However, specifying a full > list of all apps can be unwieldy, so this set adds support for passing > "all" as the examples to be built. >=20 > With "all", meson just adds all subdirectories of "examples" to the build= , > so the first few patches are ensuring that we don't get an error by > attempting to build an unsupported application. On linux, only 7 apps wer= e > unsupported, in that they had not been given a meson.build file. On > FreeBSD, a few others had to have their meson.build files updated to repo= rt > them as unsupported. >=20 > In terms of behaviour, the meson.build file for each app will report if t= he > app can be built or not. If "all" is requested, then a message is printed > and the meson run can continue. If, however, the app is requested by name= , > then an error is reported and the meson run halts. >=20 > The final two patches in the series are more cleanup, the former improves > error reporting, while the last patch is a performance improvement. Meson > runs quickly enough in the normal case, but with a full set of examples, > the dependency chain resolution can slow things down. Reducing the lists = of > dependencies makes a noticable difference in this case. [NOTE: this > slowness and speedup only applies to the meson run; the actual build usin= g > ninja is as fast as ever!] >=20 > Bruce Richardson (6): > examples: add empty meson files for unsupported examples > examples/l2fwd-cat: make build dependent on pqos library > examples: disable unsupported examples on BSD > examples: allow building all examples as part of meson build > examples: improve error report for missing meson deps > drivers/dpaa*: reduce meson dependency lists Working fine for me here! Series-Tested-by: Harry van Haaren