xref: /dpdk/doc/guides/linux_gsg/build_dpdk.rst (revision daa02b5cddbb8e11b31d41e2bf7bb1ae64dcae2f)
1..  SPDX-License-Identifier: BSD-3-Clause
2    Copyright(c) 2010-2015 Intel Corporation.
3
4.. _linux_gsg_compiling_dpdk:
5
6Compiling the DPDK Target from Source
7=====================================
8
9Uncompress DPDK and Browse Sources
10----------------------------------
11
12First, uncompress the archive and move to the uncompressed DPDK source directory:
13
14.. code-block:: console
15
16    tar xJf dpdk-<version>.tar.xz
17    cd dpdk-<version>
18
19The DPDK is composed of several directories:
20
21*   lib: Source code of DPDK libraries
22
23*   drivers: Source code of DPDK poll-mode drivers
24
25*   app: Source code of DPDK applications (automatic tests)
26
27*   examples: Source code of DPDK application examples
28
29*   config, buildtools: Framework-related scripts and configuration
30
31Compiling and Installing DPDK System-wide
32-----------------------------------------
33
34DPDK can be configured, built and installed on your system using the tools
35``meson`` and ``ninja``.
36
37
38DPDK Configuration
39~~~~~~~~~~~~~~~~~~
40
41To configure a DPDK build use:
42
43.. code-block:: console
44
45     meson <options> build
46
47where "build" is the desired output build directory, and "<options>" can be
48empty or one of a number of meson or DPDK-specific build options, described
49later in this section. The configuration process will finish with a summary
50of what DPDK libraries and drivers are to be built and installed, and for
51each item disabled, a reason why that is the case. This information can be
52used, for example, to identify any missing required packages for a driver.
53
54Once configured, to build and then install DPDK system-wide use:
55
56.. code-block:: console
57
58        cd build
59        ninja
60        ninja install
61        ldconfig
62
63The last two commands above generally need to be run as root,
64with the `ninja install` step copying the built objects to their final system-wide locations,
65and the last step causing the dynamic loader `ld.so` to update its cache to take account of the new objects.
66
67.. note::
68
69   On some linux distributions, such as Fedora or Redhat, paths in `/usr/local` are
70   not in the default paths for the loader. Therefore, on these
71   distributions, `/usr/local/lib` and `/usr/local/lib64` should be added
72   to a file in `/etc/ld.so.conf.d/` before running `ldconfig`.
73
74.. _adjusting_build_options:
75
76Adjusting Build Options
77~~~~~~~~~~~~~~~~~~~~~~~
78
79DPDK has a number of options that can be adjusted as part of the build configuration process.
80These options can be listed by running ``meson configure`` inside a configured build folder.
81Many of these options come from the "meson" tool itself and can be seen documented on the
82`Meson Website <https://mesonbuild.com/Builtin-options.html>`_.
83
84For example, to change the build-type from the default, "debugoptimized",
85to a regular "debug" build, you can either:
86
87* pass ``-Dbuildtype=debug`` or ``--buildtype=debug`` to meson when configuring the build folder initially
88
89* run ``meson configure -Dbuildtype=debug`` inside the build folder after the initial meson run.
90
91Other options are specific to the DPDK project but can be adjusted similarly.
92The "platform" option specifies a set a configuration parameters that will be used.
93The valid values are:
94
95* ``-Dplatform=native`` will tailor the configuration to the build machine.
96
97* ``-Dplatform=generic`` will use configuration that works on all machines
98  of the same architecture as the build machine.
99
100* ``-Dplatform=<SoC>`` will use configuration optimized for a particular SoC.
101  Consult the "socs" dictionary in ``config/arm/meson.build`` to see which
102  SoCs are supported.
103
104The instruction set will be set automatically by default according to these rules:
105
106* ``-Dplatform=native`` sets ``cpu_instruction_set`` to ``native``,
107  which configures ``-march`` (x86_64), ``-mcpu`` (ppc), ``-mtune`` (ppc) to ``native``.
108
109* ``-Dplatform=generic`` sets ``cpu_instruction_set`` to ``generic``,
110  which configures ``-march`` (x86_64), ``-mcpu`` (ppc), ``-mtune`` (ppc) to
111  a common minimal baseline needed for DPDK.
112
113To override what instruction set will be used, set the ``cpu_instruction_set``
114parameter to the instruction set of your choice (such as ``corei7``, ``power8``, etc.).
115
116``cpu_instruction_set`` is not used in Arm builds, as setting the instruction set
117without other parameters leads to inferior builds. The way to tailor Arm builds
118is to build for a SoC using ``-Dplatform=<SoC>`` mentioned above.
119
120The values determined by the ``platform`` parameter may be overwritten.
121For example, to set the ``max_lcores`` value to 256, you can either:
122
123* pass ``-Dmax_lcores=256`` to meson when configuring the build folder initially
124
125* run ``meson configure -Dmax_lcores=256`` inside the build folder after the initial meson run.
126
127Some of the DPDK sample applications in the `examples` directory can be
128automatically built as part of a meson build too.
129To do so, pass a comma-separated list of the examples to build to the
130`-Dexamples` meson option as below::
131
132  meson -Dexamples=l2fwd,l3fwd build
133
134As with other meson options, this can also be set post-initial-config using `meson configure` in the build directory.
135There is also a special value "all" to request that all example applications whose
136dependencies are met on the current system are built.
137When `-Dexamples=all` is set as a meson option, meson will check each example application to see if it can be built,
138and add all which can be built to the list of tasks in the ninja build configuration file.
139
140
141Building 32-bit DPDK on 64-bit Systems
142~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
143
144To build a 32-bit copy of DPDK on a 64-bit OS,
145the ``-m32`` flag should be passed to the compiler and linker
146to force the generation of 32-bit objects and binaries.
147This can be done either by setting ``CFLAGS`` and ``LDFLAGS`` in the environment,
148or by passing the value to meson using ``-Dc_args=-m32`` and ``-Dc_link_args=-m32``.
149For correctly identifying and using any dependency packages,
150the ``pkg-config`` tool must also be configured
151to look in the appropriate directory for .pc files for 32-bit libraries.
152This is done by setting ``PKG_CONFIG_LIBDIR`` to the appropriate path.
153
154The following meson command can be used on RHEL/Fedora systems to configure a 32-bit build,
155assuming the relevant 32-bit development packages, such as a 32-bit libc, are installed::
156
157  PKG_CONFIG_LIBDIR=/usr/lib/pkgconfig \
158      meson -Dc_args='-m32' -Dc_link_args='-m32' build
159
160For Debian/Ubuntu systems, the equivalent command is::
161
162  PKG_CONFIG_LIBDIR=/usr/lib/i386-linux-gnu/pkgconfig \
163      meson -Dc_args='-m32' -Dc_link_args='-m32' build
164
165Once the build directory has been configured,
166DPDK can be compiled using ``ninja`` as described above.
167
168
169.. _building_app_using_installed_dpdk:
170
171Building Applications Using Installed DPDK
172~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
173
174When installed system-wide, DPDK provides a pkg-config file ``libdpdk.pc`` for applications to query as part of their build.
175It's recommended that the pkg-config file be used, rather than hard-coding the parameters (cflags/ldflags)
176for DPDK into the application build process.
177
178An 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.
179A simplified example snippet is shown below, where the target binary name has been stored in the variable ``$(APP)``
180and the sources for that build are stored in ``$(SRCS-y)``.
181
182.. code-block:: makefile
183
184        PKGCONF = pkg-config
185
186        CFLAGS += -O3 $(shell $(PKGCONF) --cflags libdpdk)
187        LDFLAGS += $(shell $(PKGCONF) --libs libdpdk)
188
189        $(APP): $(SRCS-y) Makefile
190                $(CC) $(CFLAGS) $(SRCS-y) -o $@ $(LDFLAGS)
191
192.. note::
193
194   Unlike with the make build system present in older DPDK releases,
195   the meson system is not
196   designed to be used directly from a build directory. Instead it is
197   recommended that it be installed either system-wide or to a known
198   location in the user's home directory. The install location can be set
199   using the `--prefix` meson option (default: `/usr/local`).
200
201an equivalent build recipe for a simple DPDK application using meson as a
202build system is shown below:
203
204.. code-block:: python
205
206   project('dpdk-app', 'c')
207
208   dpdk = dependency('libdpdk')
209   sources = files('main.c')
210   executable('dpdk-app', sources, dependencies: dpdk)
211