1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2017 Intel Corporation
5 version: '18.11.0-rc0',
7 default_options: ['buildtype=release', 'default_library=static'],
8 meson_version: '>= 0.41'
11 # set up some global vars for compiler, platform, configuration, etc.
12 cc = meson.get_compiler('c')
13 dpdk_conf = configuration_data()
16 dpdk_extra_ldflags = []
18 driver_install_path = join_paths(get_option('libdir'), 'dpdk/drivers')
19 eal_pmd_path = join_paths(get_option('prefix'), driver_install_path)
21 # configure the build, and make sure configs here and in config folder are
22 # able to be included in any file. We also store a global array of include dirs
23 # for passing to pmdinfogen scripts
24 global_inc = include_directories('.', 'config')
27 # build libs and drivers
32 # build binaries and installable tools
40 # build any examples explicitly requested - useful for developers
41 if get_option('examples') != ''
45 # build kernel modules if enabled
46 if get_option('enable_kmods')
50 # write the build config
51 build_cfg = 'rte_build_config.h'
52 configure_file(output: build_cfg,
53 configuration: dpdk_conf,
54 install_dir: join_paths(get_option('includedir'),
55 get_option('include_subdir_arch')))
57 # for static builds, include the drivers as libs and we need to "whole-archive"
59 dpdk_drivers = ['-Wl,--whole-archive'] + dpdk_drivers + ['-Wl,--no-whole-archive']
61 # driver .so files often depend upon the bus drivers for their connect bus,
62 # e.g. ixgbe depends on librte_bus_pci. This means that the bus drivers need
63 # to be in the library path, so symlink the drivers from the main lib directory.
64 meson.add_install_script('buildtools/symlink-drivers-solibs.sh',
68 pkg = import('pkgconfig')
69 pkg.generate(name: meson.project_name(),
70 filebase: 'lib' + meson.project_name().to_lower(),
71 version: meson.project_version(),
72 libraries: dpdk_libraries,
73 libraries_private: dpdk_drivers + dpdk_libraries +
74 ['-Wl,-Bdynamic'] + dpdk_extra_ldflags,
75 description: 'The Data Plane Development Kit (DPDK)',
76 subdirs: [get_option('include_subdir_arch'), '.'],
77 extra_cflags: ['-include', 'rte_config.h'] + machine_args
80 # final output, list all the libs and drivers to be built
81 # this does not affect any part of the build, for information only.
82 output_message = '\n=================\nLibraries Enabled\n=================\n'
83 output_message += '\nlibs:\n\t'
85 foreach lib:enabled_libs
86 output_message += lib + ', '
89 output_message += '\n\t'
93 message(output_message + '\n')
96 # prior to 0.47 set_variable didn't work with arrays, so we can't
97 # track driver lists easily
98 if meson.version().version_compare('>=0.47')
99 output_message = '\n===============\nDrivers Enabled\n===============\n'
100 foreach class:driver_classes
101 class_drivers = get_variable(class + '_drivers')
102 output_message += '\n' + class + ':\n\t'
104 foreach drv:class_drivers
105 output_message += drv + ', '
108 output_message += '\n\t'
113 message(output_message + '\n')