1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2017 Intel Corporation
4 # Defines the order in which the drivers are buit.
5 driver_classes = ['common',
7 'mempool', # depends on common and bus.
8 'net', # depends on common, bus and mempool.
9 'crypto', # depends on common, bus and mempool (net in future).
10 'compress', # depends on common, bus, mempool.
11 'event', # depends on common, bus, mempool and net.
12 'baseband', # depends on common and bus.
13 'raw'] # depends on common, bus, mempool, net and event.
15 default_cflags = machine_args
16 if cc.has_argument('-Wno-format-truncation')
17 default_cflags += '-Wno-format-truncation'
20 # specify -D_GNU_SOURCE unconditionally
21 default_cflags += '-D_GNU_SOURCE'
23 foreach class:driver_classes
26 config_flag_fmt = '' # format string used to set the value in dpdk_conf
27 driver_name_fmt = '' # format string for driver name, used to name
28 # the library, the dependency and to find the
29 # version file for linking
35 drv_path = join_paths(class, drv)
37 # set up empty variables used for build
38 build = true # set to false to disable, e.g. missing deps
41 allow_experimental_apis = false
44 cflags = default_cflags
45 includes = [include_directories(drv_path)]
46 # set up internal deps. Drivers can append/override as necessary
48 # ext_deps: Stores external library dependency got
49 # using dependency() or cc.find_library(). For most cases, we
50 # probably also need to specify the "-l" flags in
51 # pkgconfig_extra_libs variable too, so that it can be reflected
52 # in the pkgconfig output for static builds
54 pkgconfig_extra_libs = []
56 # pull in driver directory which should assign to each of the above
62 dpdk_conf.set(config_flag_fmt.format(name.to_upper()),1)
63 lib_name = driver_name_fmt.format(name)
65 if allow_experimental_apis
66 cflags += '-DALLOW_EXPERIMENTAL_API'
69 # get dependency objs from strings
73 if not is_variable('shared_rte_' + d)
74 error('Missing dependency ' + d +
75 ' for driver ' + lib_name)
77 shared_objs += [get_variable('shared_rte_' + d)]
78 static_objs += [get_variable('static_rte_' + d)]
80 shared_objs += ext_deps
81 static_objs += ext_deps
82 dpdk_extra_ldflags += pkgconfig_extra_libs
84 # generate pmdinfo sources by building a temporary
85 # lib and then running pmdinfogen on the contents of
86 # that lib. The final lib reuses the object files and
87 # adds in the new source file.
88 out_filename = lib_name + '.pmd.c'
89 tmp_lib = static_library('tmp_' + lib_name,
91 include_directories: includes,
92 dependencies: static_objs,
94 objs += tmp_lib.extract_all_objects()
95 sources = custom_target(out_filename,
96 command: [pmdinfo, tmp_lib.full_path(),
97 '@OUTPUT@', pmdinfogen],
99 depends: [pmdinfogen, tmp_lib])
101 if get_option('per_library_versions')
102 lib_version = '@0@.1'.format(version)
103 so_version = '@0@'.format(version)
105 pver = meson.project_version().split('.')
106 lib_version = '@0@.@1@'.format(pver.get(0),
108 so_version = lib_version
111 # now build the static driver
112 static_lib = static_library(lib_name,
115 include_directories: includes,
116 dependencies: static_objs,
120 # now build the shared driver
121 version_map = '@0@/@1@/@2@_version.map'.format(
122 meson.current_source_dir(),
124 shared_lib = shared_library(lib_name,
127 include_directories: includes,
128 dependencies: shared_objs,
130 link_args: '-Wl,--version-script=' + version_map,
131 link_depends: version_map,
132 version: lib_version,
133 soversion: so_version,
135 install_dir: driver_install_path)
137 # create a dependency object and add it to the global dictionary so
138 # testpmd or other built-in apps can find it if necessary
139 shared_dep = declare_dependency(link_with: shared_lib,
140 include_directories: includes,
141 dependencies: shared_objs)
142 static_dep = declare_dependency(link_with: static_lib,
143 include_directories: includes,
144 dependencies: static_objs)
146 dpdk_drivers += static_lib
148 set_variable('shared_@0@'.format(lib_name), shared_dep)
149 set_variable('static_@0@'.format(lib_name), static_dep)
153 if meson.version().version_compare('>=0.47')
154 # prior to 0.47, set_variable can't take array params
155 set_variable(class + '_drivers', class_drivers)