From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id 606271B31E for ; Fri, 26 Jan 2018 18:18:53 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga003.jf.intel.com ([10.7.209.27]) by orsmga102.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 26 Jan 2018 09:18:52 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.46,417,1511856000"; d="scan'208";a="22558744" Received: from fyigit-mobl1.ger.corp.intel.com (HELO [10.237.220.48]) ([10.237.220.48]) by orsmga003.jf.intel.com with ESMTP; 26 Jan 2018 09:18:50 -0800 To: Tomasz Duszynski Cc: dev@dpdk.org, mw@semihalf.com, dima@marvell.com, nsamsono@marvell.com, Jianbo.liu@linaro.org References: <1516953745-26545-1-git-send-email-tdu@semihalf.com> <672fc2c9-cf19-02ee-59a3-f06903fd6307@intel.com> <20180126164619.GA22846@sh.semihalf.local> From: Ferruh Yigit Message-ID: <884734d4-cf6e-72b3-853d-f4c6dbccc430@intel.com> Date: Fri, 26 Jan 2018 17:18:50 +0000 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Thunderbird/52.5.2 MIME-Version: 1.0 In-Reply-To: <20180126164619.GA22846@sh.semihalf.local> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 8bit Subject: Re: [dpdk-dev] [PATCH] net/mrvl: update MUSDK library build instructions 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, 26 Jan 2018 17:18:53 -0000 On 1/26/2018 4:46 PM, Tomasz Duszynski wrote: > On Fri, Jan 26, 2018 at 04:37:27PM +0000, Ferruh Yigit wrote: >> On 1/26/2018 8:02 AM, Tomasz Duszynski wrote: >>> By default both static and shared libraries should be created while >>> building MUSDK library. It turns out that this will not happen if >>> host parameter is not explicitly passed to the configure script. >>> >>> Specifying host makes sure configure will detect support for shared >>> libraries. >>> >>> Signed-off-by: Tomasz Duszynski >>> --- >>> doc/guides/nics/mrvl.rst | 5 ++--- >>> 1 file changed, 2 insertions(+), 3 deletions(-) >>> >>> diff --git a/doc/guides/nics/mrvl.rst b/doc/guides/nics/mrvl.rst >>> index 892097d..77b2d66 100644 >>> --- a/doc/guides/nics/mrvl.rst >>> +++ b/doc/guides/nics/mrvl.rst >>> @@ -221,14 +221,13 @@ Usage example >>> Building DPDK >>> ------------- >>> >>> -Driver needs precompiled MUSDK library during compilation. Please consult >>> -``doc/musdk_get_started.txt`` for the detailed build instructions. >>> +Driver needs precompiled MUSDK library during compilation. >>> >>> .. code-block:: console >>> >>> export CROSS_COMPILE=/bin/aarch64-linux-gnu- >>> ./bootstrap >>> - ./configure --enable-bpool-dma=64 >>> + ./configure --host=aarch64-linux-gnu --enable-bpool-dma=64 >> >> One more flag is required for crypto PMD, right? Is it documented somewhere? > > You mean --enable-sam? It's mentioned in the crypto PMD docs. Yes I was mentioning it, and confirmed that it is documented, thanks. > >> >>> make install >>> >>> MUSDK will be installed to `usr/local` under current directory. >>> >> > > -- > - Tomasz DuszyƄski >