From patchwork Thu Jan 24 23:05:41 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Varghese, Vipin" X-Patchwork-Id: 50037 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 C43635587; Thu, 24 Jan 2019 18:08:47 +0100 (CET) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id 2F917343C for ; Thu, 24 Jan 2019 18:08:45 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga102.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 24 Jan 2019 09:08:45 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.56,517,1539673200"; d="scan'208";a="132774203" Received: from unknown (HELO saesrv02-S2600CWR.intel.com) ([10.224.122.203]) by orsmga001.jf.intel.com with ESMTP; 24 Jan 2019 09:08:42 -0800 From: Vipin Varghese To: john.mcnamara@intel.com, marko.kovacevic@intel.com, thomas@monjalon.net, ferruh.yigit@intel.com, dev@dpdk.org Cc: sanjay.padubidri@intel.com, amol.patel@intel.com, Vipin Varghese Date: Fri, 25 Jan 2019 04:35:41 +0530 Message-Id: <20190124230541.58343-1-vipin.varghese@intel.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20181030141847.23861-1-vipin.varghese@intel.com> References: <20181030141847.23861-1-vipin.varghese@intel.com> Subject: [dpdk-dev] [PATCH v4] doc/patches: 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 devtool script for code and document changes. Updating documentation for meson build steps in checking Compilation category. Signed-off-by: Vipin Varghese Tested-by: Marko Kovacevic Acked-by: Marko Kovacevic --- V4: - spelling correction for Compilation - Thomas Monjalon - restored double space for new header - Thomas Monjalon - reword the meson compilation content - Vipin Varghese - Added 'tested' and 'acked' from - Marko Kovacevic V3: removed extra character - Vipin Varghese V2: updated the meson build options - Bruce Richardson --- doc/guides/contributing/patches.rst | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/doc/guides/contributing/patches.rst b/doc/guides/contributing/patches.rst index a64bb0368..e9048bbc0 100644 --- a/doc/guides/contributing/patches.rst +++ b/doc/guides/contributing/patches.rst @@ -473,6 +473,14 @@ The recommended configurations and options to test compilation prior to submitti export DPDK_DEP_PCAP=y export DPDK_DEP_SSL=y +Compilation of patches is to be tested with ``test-meson-builds.sh`` script +in ``devtools`` directory of the DPDK repo:: + + devtools/test-meson-builds.sh + +The script internally checks for dependencies and tool chain. Then builds with +shared and static libraries for Linux and BSD targets. + Sending Patches ---------------