1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2017 Intel Corporation
4 # set the machine type and cflags for it
5 if meson.is_cross_build()
6 machine = host_machine.cpu()
8 machine = get_option('machine')
10 dpdk_conf.set('RTE_MACHINE', machine)
12 machine_args += '-march=' + machine
15 add_project_link_arguments('-pthread', language: 'c')
16 dpdk_extra_ldflags += '-pthread'
18 # some libs depend on maths lib
19 add_project_link_arguments('-lm', language: 'c')
20 dpdk_extra_ldflags += '-lm'
22 # for linux link against dl, for bsd execinfo
23 if host_machine.system() == 'linux'
28 add_project_link_arguments('-l' + link_lib, language: 'c')
29 dpdk_extra_ldflags += '-l' + link_lib
31 # check for libraries used in multiple places in DPDK
33 numa_dep = cc.find_library('numa', required: false)
34 if numa_dep.found() and cc.has_header('numaif.h')
35 dpdk_conf.set10('RTE_HAS_LIBNUMA', true)
37 add_project_link_arguments('-lnuma', language: 'c')
38 dpdk_extra_ldflags += '-lnuma'
42 if host_machine.system() == 'linux' and cc.find_library('bsd', required: false).found()
43 dpdk_conf.set('RTE_USE_LIBBSD', 1)
44 add_project_link_arguments('-lbsd', language: 'c')
45 dpdk_extra_ldflags += '-lbsd'
48 # add -include rte_config to cflags
49 add_project_arguments('-include', 'rte_config.h', language: 'c')
51 # enable extra warnings and disable any unwanted warnings
55 '-Wno-address-of-packed-member',
56 '-Wno-format-truncation'
58 foreach arg: warning_flags
59 if cc.has_argument(arg)
60 add_project_arguments(arg, language: 'c')
64 # set other values pulled from the build options
65 dpdk_conf.set('RTE_MAX_LCORE', get_option('max_lcores'))
66 dpdk_conf.set('RTE_MAX_NUMA_NODES', get_option('max_numa_nodes'))
67 dpdk_conf.set('RTE_LIBEAL_USE_HPET', get_option('use_hpet'))
68 dpdk_conf.set('RTE_EAL_ALLOW_INV_SOCKET_ID', get_option('allow_invalid_socket_id'))
69 # values which have defaults which may be overridden
70 dpdk_conf.set('RTE_MAX_VFIO_GROUPS', 64)
72 compile_time_cpuflags = []
73 if host_machine.cpu_family().startswith('x86')
75 elif host_machine.cpu_family().startswith('arm') or host_machine.cpu_family().startswith('aarch')
79 dpdk_conf.set('RTE_COMPILE_TIME_CPUFLAGS', ','.join(compile_time_cpuflags))
81 # set the install path for the drivers
82 dpdk_conf.set_quoted('RTE_EAL_PMD_PATH', eal_pmd_path)
84 install_headers('rte_config.h', subdir: get_option('include_subdir_arch'))