File: meson.build

package info (click to toggle)
dpdk 22.11.8-1~deb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 103,460 kB
  • sloc: ansic: 1,826,258; python: 4,473; sh: 4,351; makefile: 2,001; awk: 53
file content (26 lines) | stat: -rw-r--r-- 574 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2017 Intel Corporation

subdir('include')

sources += files(
        'eal.c',
        'eal_alarm.c',
        'eal_cpuflags.c',
        'eal_dev.c',
        'eal_hugepage_info.c',
        'eal_interrupts.c',
        'eal_lcore.c',
        'eal_log.c',
        'eal_memalloc.c',
        'eal_memory.c',
        'eal_thread.c',
        'eal_timer.c',
        'eal_vfio.c',
        'eal_vfio_mp_sync.c',
)

deps += ['kvargs', 'telemetry']
if has_libnuma == 1
    dpdk_conf.set10('RTE_EAL_NUMA_AWARE_HUGEPAGES', true)
endif