Note that config/rte_config.h contains several configuration switches, providing for fine control of the PMD's runtime behaviour. The meson infrastructure is expanded as additional files are added to this patchset. Adds announcement of availability of the new driver for Intel Dynamic Load Balancer 1.0 hardware. Signed-off-by: Timothy McDaniel <timothy.mcdaniel@intel.com> Reviewed-by: Gage Eads <gage.eads@intel.com>
16 lines
427 B
Meson
16 lines
427 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2017 Intel Corporation
|
|
|
|
if is_windows
|
|
subdir_done()
|
|
endif
|
|
|
|
drivers = ['dlb', 'dlb2', 'dpaa', 'dpaa2', 'octeontx2', 'opdl', 'skeleton', 'sw',
|
|
'dsw']
|
|
if not (toolchain == 'gcc' and cc.version().version_compare('<4.8.6') and
|
|
dpdk_conf.has('RTE_ARCH_ARM64'))
|
|
drivers += 'octeontx'
|
|
endif
|
|
std_deps = ['eventdev', 'kvargs']
|
|
config_flag_fmt = 'RTE_LIBRTE_PMD_@0@_EVENTDEV'
|