This patch fixes dpaax library dependency for NXP's PMDs. Fixes: e56463ec47f0 ("net/enetc: enable dpaax library") Fixes: 67fc3ff97c39 ("net/pfe: introduce basic functions") Fixes: 9e727d4a3fd4 ("crypto/caam_jr: integrate DPAAX table") Suggested-by: Thierry Herbelot <thierry.herbelot@6wind.com> Signed-off-by: Gagandeep Singh <g.singh@nxp.com> Acked-by: Thierry Herbelot <thierry.herbelot@6wind.com> Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>
24 lines
459 B
Meson
24 lines
459 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright 2019 NXP
|
|
|
|
if host_machine.system() != 'linux'
|
|
build = false
|
|
endif
|
|
deps += ['common_dpaax']
|
|
|
|
sources = files('pfe_ethdev.c',
|
|
'pfe_hal.c',
|
|
'pfe_hif_lib.c',
|
|
'pfe_hif.c')
|
|
|
|
if cc.has_argument('-Wno-pointer-arith')
|
|
cflags += '-Wno-pointer-arith'
|
|
endif
|
|
|
|
# Driver uses below experimental APIs
|
|
# rte_mem_iova2virt
|
|
# rte_mem_virt2memseg
|
|
allow_experimental_apis = true
|
|
|
|
includes += include_directories('base')
|