f-stack/dpdk/lib/librte_eal/linux/eal/meson.build

32 lines
604 B
Meson

# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2017 Intel Corporation
eal_inc += include_directories('include')
env_objs = []
env_headers = files(
'include/rte_kni_common.h',
'include/rte_os.h',
)
env_sources = files('eal_alarm.c',
'eal_cpuflags.c',
'eal_debug.c',
'eal_hugepage_info.c',
'eal_interrupts.c',
'eal_memalloc.c',
'eal_lcore.c',
'eal_log.c',
'eal_thread.c',
'eal_timer.c',
'eal_vfio.c',
'eal_vfio_mp_sync.c',
'eal.c',
'eal_memory.c',
'eal_dev.c',
)
deps += ['kvargs']
if has_libnuma == 1
dpdk_conf.set10('RTE_EAL_NUMA_AWARE_HUGEPAGES', true)
endif