7411d03249
Reduce dependency on internal details of EAL memory subsystem, and simplify code. Signed-off-by: Anatoly Burakov <anatoly.burakov@intel.com> Tested-by: Santosh Shukla <santosh.shukla@caviumnetworks.com> Tested-by: Hemant Agrawal <hemant.agrawal@nxp.com> Tested-by: Gowrishankar Muthukrishnan <gowrishankar.m@linux.vnet.ibm.com>
20 lines
523 B
Meson
20 lines
523 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2017 Intel Corporation
|
|
|
|
deps += ['pci']
|
|
install_headers('rte_bus_pci.h')
|
|
sources = files('pci_common.c', 'pci_common_uio.c')
|
|
if host_machine.system() == 'linux'
|
|
sources += files('linux/pci.c',
|
|
'linux/pci_uio.c',
|
|
'linux/pci_vfio.c')
|
|
includes += include_directories('linux')
|
|
cflags += ['-D_GNU_SOURCE']
|
|
else
|
|
sources += files('bsd/pci.c')
|
|
includes += include_directories('bsd')
|
|
endif
|
|
|
|
# memseg walk is not part of stable API yet
|
|
allow_experimental_apis = true
|