doc: announce behavior change for device NUMA node field
[dpdk.git] / meson.build
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2017-2019 Intel Corporation
3
4 project('DPDK', 'C',
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(),
9         license: 'BSD',
10         default_options: [
11             'buildtype=release',
12             'default_library=static',
13             'warning_level=2',
14         ],
15         meson_version: '>= 0.49.2'
16 )
17
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
22         fs = import('fs')
23         developer_mode = fs.is_dir('.git')
24     endif
25 else
26     developer_mode = get_option('developer_mode').enabled()
27 endif
28 if developer_mode
29     message('## Building in Developer Mode ##')
30 endif
31
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()
37 dpdk_libraries = []
38 dpdk_static_libraries = []
39 dpdk_shared_lib_deps = []
40 dpdk_static_lib_deps = []
41 dpdk_chkinc_headers = []
42 dpdk_driver_classes = []
43 dpdk_drivers = []
44 dpdk_extra_ldflags = []
45 dpdk_libs_disabled = []
46 dpdk_drvs_disabled = []
47 testpmd_drivers_sources = []
48 testpmd_drivers_deps = []
49 abi_version_file = files('ABI_VERSION')
50
51 if host_machine.cpu_family().startswith('x86')
52     arch_subdir = 'x86'
53 elif host_machine.cpu_family().startswith('arm') or host_machine.cpu_family().startswith('aarch')
54     arch_subdir = 'arm'
55 elif host_machine.cpu_family().startswith('ppc')
56     arch_subdir = 'ppc'
57 elif host_machine.cpu_family().startswith('riscv')
58     arch_subdir = 'riscv'
59 endif
60
61 # configure the build, and make sure configs here and in config folder are
62 # able to be included in any file. We also store a global array of include dirs
63 # for passing to pmdinfogen scripts
64 global_inc = include_directories('.', 'config',
65     'lib/eal/include',
66     'lib/eal/@0@/include'.format(host_machine.system()),
67     'lib/eal/@0@/include'.format(arch_subdir),
68 )
69
70 # do configuration and get tool paths
71 subdir('buildtools')
72 subdir('config')
73
74 # build libs and drivers
75 subdir('lib')
76 subdir('drivers')
77
78 # build binaries and installable tools
79 subdir('usertools')
80 subdir('app')
81
82 # build docs
83 subdir('doc')
84
85 # build any examples explicitly requested - useful for developers - and
86 # install any example code into the appropriate install path
87 subdir('examples')
88 install_subdir('examples',
89         install_dir: get_option('datadir') + '/dpdk',
90         exclude_files: ex_file_excludes)
91
92 # build kernel modules if enabled
93 if get_option('enable_kmods')
94     subdir('kernel')
95 endif
96
97 # check header includes if requested
98 if get_option('check_includes')
99     subdir('buildtools/chkincs')
100 endif
101
102 # write the build config
103 build_cfg = 'rte_build_config.h'
104 configure_file(output: build_cfg,
105         configuration: dpdk_conf,
106         install_dir: join_paths(get_option('includedir'),
107             get_option('include_subdir_arch')))
108
109 # build pkg-config files for dpdk
110 subdir('buildtools/pkg-config')
111
112 if meson.is_subproject()
113     subdir('buildtools/subproject')
114 endif
115
116 # final output, list all the libs and drivers to be built
117 # this does not affect any part of the build, for information only.
118 output_message = '\n=================\nLibraries Enabled\n=================\n'
119 output_message += '\nlibs:\n\t'
120 output_count = 0
121 foreach lib:enabled_libs
122     output_message += lib + ', '
123     output_count += 1
124     if output_count == 8
125         output_message += '\n\t'
126         output_count = 0
127     endif
128 endforeach
129 message(output_message + '\n')
130
131 output_message = '\n===============\nDrivers Enabled\n===============\n'
132 foreach class:dpdk_driver_classes
133     class_drivers = get_variable(class + '_drivers')
134     output_message += '\n' + class + ':\n\t'
135     output_count = 0
136     foreach drv:class_drivers
137         output_message += drv + ', '
138         output_count += 1
139         if output_count == 8
140             output_message += '\n\t'
141             output_count = 0
142         endif
143     endforeach
144 endforeach
145 message(output_message + '\n')
146
147 output_message = '\n=================\nContent Skipped\n=================\n'
148 output_message += '\nlibs:\n\t'
149 foreach lib:dpdk_libs_disabled
150     reason = get_variable(lib.underscorify() + '_disable_reason')
151     output_message += lib + ':\t' + reason + '\n\t'
152 endforeach
153 output_message += '\ndrivers:\n\t'
154 foreach drv:dpdk_drvs_disabled
155     reason = get_variable(drv.underscorify() + '_disable_reason')
156     output_message += drv + ':\t' + reason + '\n\t'
157 endforeach
158 message(output_message + '\n')