From patchwork Tue Oct 30 14:13:45 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Varghese, Vipin" X-Patchwork-Id: 47568 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 2C4D010A3; Tue, 30 Oct 2018 15:17:28 +0100 (CET) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id EFD85B62 for ; Tue, 30 Oct 2018 15:17:25 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga008.jf.intel.com ([10.7.209.65]) by orsmga103.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 30 Oct 2018 07:17:25 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.54,444,1534834800"; d="scan'208";a="86178607" Received: from unknown (HELO saesrv02-S2600CWR.intel.com) ([10.224.122.203]) by orsmga008.jf.intel.com with ESMTP; 30 Oct 2018 07:17:22 -0700 From: Vipin Varghese To: bruce.richardson@intel.com, john.mcnamara@intel.com, dev@dpdk.org, marko.kovacevic@intel.com Cc: amol.patel@intel.com, stephen1.byrne@intel.com, Vipin Varghese Date: Tue, 30 Oct 2018 19:43:45 +0530 Message-Id: <20181030141345.23725-1-vipin.varghese@intel.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20181030045633.18859-1-vipin.varghese@intel.com> References: <20181030045633.18859-1-vipin.varghese@intel.com> Subject: [dpdk-dev] [PATCH v2] doc: add meson build to contributing guide 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" Patches has to be validated for meson builds. Updating documentation for meson build steps in Checking Compilation category. Signed-off-by: Vipin Varghese --- V2: updated the meson build options - Bruce Richardson --- doc/guides/contributing/patches.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/doc/guides/contributing/patches.rst b/doc/guides/contributing/patches.rst index a3d788024..df86c0e76 100644 --- a/doc/guides/contributing/patches.rst +++ b/doc/guides/contributing/patches.rst @@ -468,6 +468,12 @@ The recommended configurations and options to test compilation prior to submitti export DPDK_DEP_PCAP=y export DPDK_DEP_SSL=y +Compliation of patches has to be tested using meson:: + + ./devtools/test-meson-builds.sh' + +This will test for shared and static builds. If gcc arm cross compiler is +installed, cross build is tested too. Sending Patches ---------------