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 06D6010A3 for ; Tue, 30 Oct 2018 06:00:14 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga106.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 29 Oct 2018 22:00:13 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.54,443,1534834800"; d="scan'208";a="104405242" Received: from unknown (HELO saesrv02-S2600CWR.intel.com) ([10.224.122.203]) by orsmga002.jf.intel.com with ESMTP; 29 Oct 2018 22:00:10 -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 10:26:33 +0530 Message-Id: <20181030045633.18859-1-vipin.varghese@intel.com> X-Mailer: git-send-email 2.17.1 Subject: [dpdk-dev] [PATCH v1] 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: , X-List-Received-Date: Tue, 30 Oct 2018 05:00:15 -0000 Patches has to be validated for meson builds. Updating documentation for meson build steps in Checking Compilation category. Signed-off-by: Vipin Varghese --- doc/guides/contributing/patches.rst | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/doc/guides/contributing/patches.rst b/doc/guides/contributing/patches.rst index a3d788024..494037778 100644 --- a/doc/guides/contributing/patches.rst +++ b/doc/guides/contributing/patches.rst @@ -468,6 +468,15 @@ 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' + +The default build target is for shared library. Build can be modified for +static and cross build by + + * static by ``--default-library=static``. + * arm cross build use ``--cross-file=`` to override default path. Sending Patches --------------- -- 2.17.1