b114af1603
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>
10 lines
274 B
Meson
10 lines
274 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2017 Intel Corporation
|
|
|
|
pmdinfogen_inc = eal_inc
|
|
pmdinfogen_inc += include_directories('../../lib/librte_pci')
|
|
pmdinfogen = executable('pmdinfogen',
|
|
'pmdinfogen.c',
|
|
include_directories: pmdinfogen_inc,
|
|
native: true)
|