Any flags added to the project args are automatically added to all builds, both native and cross-compiled. This is not what we want for the -march flag as a valid -march for the cross-compile is not valid for pmdinfogen which is a native-build tool. Instead we store the march flag as a variable, and add it to the default cflags for all libs, drivers, examples, etc. This will allow pmdinfogen to compile successfully in a cross-compilation environment. Signed-off-by: Bruce Richardson <bruce.richardson@intel.com> Acked-by: Luca Boccassi <bluca@debian.org>
33 lines
835 B
Meson
33 lines
835 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2017 Intel Corporation
|
|
|
|
driver_libs = []
|
|
if get_option('default_library') == 'static'
|
|
driver_libs = dpdk_drivers
|
|
endif
|
|
|
|
foreach example: get_option('examples').split(',')
|
|
name = example
|
|
sources = []
|
|
allow_experimental_apis = false
|
|
cflags = [machine_arg]
|
|
ext_deps = []
|
|
includes = [include_directories(example)]
|
|
deps = ['eal', 'mempool', 'net', 'mbuf', 'ethdev', 'cmdline']
|
|
subdir(example)
|
|
|
|
dep_objs = ext_deps
|
|
foreach d:deps
|
|
dep_objs += [get_variable(get_option('default_library') + '_rte_' + d)]
|
|
endforeach
|
|
if allow_experimental_apis
|
|
cflags += '-DALLOW_EXPERIMENTAL_API'
|
|
endif
|
|
executable('dpdk-' + name, sources,
|
|
include_directories: includes,
|
|
link_whole: driver_libs,
|
|
link_args: dpdk_extra_ldflags,
|
|
c_args: cflags,
|
|
dependencies: dep_objs)
|
|
endforeach
|