numam-dpdk/drivers/net/igc/base/meson.build
Jerin Jacob 1539acc20a drivers: remove warning with Meson 0.59
Since meson 0.59.0 version, the extract_all_objects() API
need to pass explicit boolean value.

To remove the following warning[1], added explicit `true` for
extract_all_objects() use in codebase whever there is
no argument.

[1]
WARNING: extract_all_objects called without setting recursive
keyword argument. Meson currently defaults to
non-recursive to maintain backward compatibility but
the default will be changed in the future.

Signed-off-by: Jerin Jacob <jerinj@marvell.com>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>
2021-08-27 15:51:34 +02:00

20 lines
434 B
Meson

# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2019-2020 Intel Corporation
sources = [
'igc_api.c',
'igc_base.c',
'igc_i225.c',
'igc_mac.c',
'igc_manage.c',
'igc_nvm.c',
'igc_osdep.c',
'igc_phy.c',
]
base_lib = static_library('igc_base', sources,
dependencies: static_rte_eal,
c_args: cflags)
base_objs = base_lib.extract_all_objects(recursive: true)