From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 23F72A04C2; Mon, 25 Nov 2019 14:19:19 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id B60022BCE; Mon, 25 Nov 2019 14:19:17 +0100 (CET) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by dpdk.org (Postfix) with ESMTP id A76E22952 for ; Mon, 25 Nov 2019 14:19:16 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga106.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 25 Nov 2019 05:19:14 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.69,241,1571727600"; d="scan'208";a="358839875" Received: from aburakov-mobl1.ger.corp.intel.com (HELO [10.237.220.92]) ([10.237.220.92]) by orsmga004.jf.intel.com with ESMTP; 25 Nov 2019 05:19:13 -0800 To: Bruce Richardson , john.mcnamara@intel.com Cc: dev@dpdk.org References: <20191122160359.11625-1-bruce.richardson@intel.com> <20191122160359.11625-3-bruce.richardson@intel.com> From: "Burakov, Anatoly" Message-ID: Date: Mon, 25 Nov 2019 13:19:13 +0000 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:60.0) Gecko/20100101 Thunderbird/60.9.1 MIME-Version: 1.0 In-Reply-To: <20191122160359.11625-3-bruce.richardson@intel.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH 2/8] doc: add building with meson to linux GSG 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" On 22-Nov-19 4:03 PM, Bruce Richardson wrote: > Add instructions on building DPDK and using the pkg-config file to the > linux GSG. > > Signed-off-by: Bruce Richardson > --- > doc/guides/linux_gsg/build_dpdk.rst | 94 +++++++++++++++++++++++++++-- > 1 file changed, 90 insertions(+), 4 deletions(-) > > diff --git a/doc/guides/linux_gsg/build_dpdk.rst b/doc/guides/linux_gsg/build_dpdk.rst > index 7c0329fcc..5710effbc 100644 > --- a/doc/guides/linux_gsg/build_dpdk.rst > +++ b/doc/guides/linux_gsg/build_dpdk.rst > @@ -11,8 +11,8 @@ Compiling the DPDK Target from Source > Parts of this process can also be done using the setup script described in > the :ref:`linux_setup_script` section of this document. > > -Install the DPDK and Browse Sources > ------------------------------------ > +Uncompress DPDK and Browse Sources > +---------------------------------- > > First, uncompress the archive and move to the uncompressed DPDK source directory: > > @@ -33,8 +33,94 @@ The DPDK is composed of several directories: > > * config, buildtools, mk: Framework-related makefiles, scripts and configuration > > -Installation of DPDK Target Environments > ----------------------------------------- > +Compiling and Installing DPDK System-wide > +----------------------------------------- > + > +DPDK can be configured, built and installed on your system using the tools > +``meson`` and ``ninja``. > + > +.. note:: > + > + The older makefile-based build system used in older DPDK releases is > + still present and it's use is described in section *its > + `Installation of DPDK Target Environment using Make`_. > + > +DPDK Configuration > +~~~~~~~~~~~~~~~~~~ > + > +To configure a DPDK build use: > + > +.. code-block:: console > + > + meson build > + > +where "build" is the desired output build directory, and "" can be > +empty or one of a number of meson or DPDK-specific build options, described > +later in this section. The configuration process will finish with a summary > +of what DPDK libraries and drivers are to be built and installed, and for > +each item disabled, a reason why that is the case. This information can be > +used, for example, to identify any missing required packages for a driver. > + > +Once configured, to build and then install DPDK system-wide use: > + > +.. code-block:: console > + > + cd build > + ninja > + ninja install > + > +Adjusting Build Options > +~~~~~~~~~~~~~~~~~~~~~~~ > + > +DPDK has a number of options that can be adjusted as part of the build configuration process. > +These options can be listed by running ``meson configure`` inside a configured build folder. > +Many of these options come from the "meson" tool itself and can be seen documented on the > +`Meson Website `_. > + > +For example, to change the build-type from the default, "debugoptimized", > +to a regular "debug" build, you can either: > + > +* pass ``-Dbuildtype=debug`` or ``--buildtype=debug`` to meson when configuring the build folder initially > + > +* run ``meson configure -Dbuildtype=debug`` inside the build folder after the initial meson run. > + > +Other options are specific to the DPDK project but can be adjusted similarly. > +To set the "max_lcores" value to 256, for example, you can either: > + > +* pass ``-Dmax_lcores=256`` to meson when configuring the build folder initially > + > +* run ``meson configure -Dmax_lcores=256`` inside the build folder after the initial meson run. This *very* welcome. It's a pity it's not possible to run these /before/ creating a build directory, but i'll take it! A common source of confusion for people building example apps with meson is that, unlike with make, you don't build DPDK first and then build examples, you build them all at once. Perhaps it would be worth calling this out explicitly? Also, kinda unrelated to this, but can we add an "all" target that actually fails if one of the examples doesn't build? IIRC currently it'll just skip through any that don't build, which is not ideal for quick compile testing. I mean, obviously apps that don't have their dependencies met shouldn't be attempted, but if any /buildable/ examples fail to build, i think there should be a way to communicate this without having to explicitly call out all example apps in the -Dexamples option. (if it currently works that way, disregard!) > + > +Building Applications Using Installed DPDK > +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ > + > +When installed system-wide, DPDK provides a pkg-config file ``libdpdk.pc`` for applications to query as part of their build. > +It's recommended that the pkg-config file be used, rather than hard-coding the parameters (cflags/ldflags) > +for DPDK into the application build process. > + > +An example of how to query and use the pkg-config file can be found in the ``Makefile`` of each of the example applications included with DPDK. > +A simplified example snippet is shown below, where the target binary name has been stored in the variable ``$(APP)`` > +and the sources for that build are stored in ``$(SRCS-y)``. > + > +.. code-block:: makefile > + > + PKGCONF = pkg-config > + > + CFLAGS += -O3 $(shell $(PKGCONF) --cflags libdpdk) > + LDFLAGS += $(shell $(PKGCONF) --libs libdpdk) > + > + $(APP): $(SRCS-y) Makefile > + $(CC) $(CFLAGS) $(SRCS-y) -o $@ $(LDFLAGS) What about a meson-based example? Also, i think it's worth calling out the fact that (at least as far as i know) it's not possible to use DPDK built with meson without installing it. With make, it's possible to have RTE_SDK/RTE_TARGET defined, and that will work without installing DPDK systemwide, but not with meson. > + > + > +Installation of DPDK Target Environment using Make > +-------------------------------------------------- > + > +.. note:: > + > + The building of DPDK using make will be deprecated in a future release. It > + is therefore recommended that DPDK installation is done using meson and > + ninja as described above. > > The format of a DPDK target is:: > > -- Thanks, Anatoly