1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2017-2019 Intel Corporation
5 # Get version number from file.
6 # Fallback to "more" for Windows compatibility.
7 version: run_command(find_program('cat', 'more'),
8 files('VERSION'), check: true).stdout().strip(),
12 'default_library=static',
15 meson_version: '>= 0.49.2'
18 # check for developer mode
19 developer_mode = false
20 if get_option('developer_mode').auto()
21 if meson.version().version_compare('>=0.53') # fs module available
23 developer_mode = fs.is_dir('.git')
26 developer_mode = get_option('developer_mode').enabled()
29 message('## Building in Developer Mode ##')
32 # set up some global vars for compiler, platform, configuration, etc.
33 cc = meson.get_compiler('c')
34 dpdk_source_root = meson.current_source_dir()
35 dpdk_build_root = meson.current_build_dir()
36 dpdk_conf = configuration_data()
38 dpdk_static_libraries = []
39 dpdk_chkinc_headers = []
40 dpdk_driver_classes = []
42 dpdk_extra_ldflags = []
43 dpdk_libs_disabled = []
44 dpdk_drvs_disabled = []
45 abi_version_file = files('ABI_VERSION')
47 if host_machine.cpu_family().startswith('x86')
49 elif host_machine.cpu_family().startswith('arm') or host_machine.cpu_family().startswith('aarch')
51 elif host_machine.cpu_family().startswith('ppc')
55 # configure the build, and make sure configs here and in config folder are
56 # able to be included in any file. We also store a global array of include dirs
57 # for passing to pmdinfogen scripts
58 global_inc = include_directories('.', 'config',
60 'lib/eal/@0@/include'.format(host_machine.system()),
61 'lib/eal/@0@/include'.format(arch_subdir),
64 # do configuration and get tool paths
68 # build libs and drivers
72 # build binaries and installable tools
79 # build any examples explicitly requested - useful for developers - and
80 # install any example code into the appropriate install path
82 install_subdir('examples',
83 install_dir: get_option('datadir') + '/dpdk',
84 exclude_files: ex_file_excludes)
86 # build kernel modules if enabled
87 if get_option('enable_kmods')
91 # check header includes if requested
92 if get_option('check_includes')
93 subdir('buildtools/chkincs')
96 # write the build config
97 build_cfg = 'rte_build_config.h'
98 configure_file(output: build_cfg,
99 configuration: dpdk_conf,
100 install_dir: join_paths(get_option('includedir'),
101 get_option('include_subdir_arch')))
103 # build pkg-config files for dpdk
104 subdir('buildtools/pkg-config')
106 # final output, list all the libs and drivers to be built
107 # this does not affect any part of the build, for information only.
108 output_message = '\n=================\nLibraries Enabled\n=================\n'
109 output_message += '\nlibs:\n\t'
111 foreach lib:enabled_libs
112 output_message += lib + ', '
115 output_message += '\n\t'
119 message(output_message + '\n')
121 output_message = '\n===============\nDrivers Enabled\n===============\n'
122 foreach class:dpdk_driver_classes
123 class_drivers = get_variable(class + '_drivers')
124 output_message += '\n' + class + ':\n\t'
126 foreach drv:class_drivers
127 output_message += drv + ', '
130 output_message += '\n\t'
135 message(output_message + '\n')
137 output_message = '\n=================\nContent Skipped\n=================\n'
138 output_message += '\nlibs:\n\t'
139 foreach lib:dpdk_libs_disabled
140 reason = get_variable(lib.underscorify() + '_disable_reason')
141 output_message += lib + ':\t' + reason + '\n\t'
143 output_message += '\ndrivers:\n\t'
144 foreach drv:dpdk_drvs_disabled
145 reason = get_variable(drv.underscorify() + '_disable_reason')
146 output_message += drv + ':\t' + reason + '\n\t'
148 message(output_message + '\n')