1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2017 Intel Corporation
4 # Custom EAL processing. EAL is complicated enough that it can't just
5 # have a straight list of headers and source files.
6 # Initially pull in common settings
8 subdir('common') # defines common_sources, common_objs, etc.
10 # Now do OS/exec-env specific settings, including building kernel modules
11 # The <exec-env>/eal/meson.build file should define env_sources, etc.
12 if host_machine.system() == 'linux'
13 dpdk_conf.set('RTE_EXEC_ENV_LINUXAPP', 1)
14 subdir('linuxapp/eal')
16 elif host_machine.system() == 'freebsd'
17 dpdk_conf.set('RTE_EXEC_ENV_BSDAPP', 1)
21 error('unsupported system type @0@'.format(hostmachine.system()))
24 version = 7 # the version of the EAL API
25 allow_experimental_apis = true
27 cflags += '-D_GNU_SOURCE'
28 sources = common_sources + env_sources
29 objs = common_objs + env_objs
30 headers = common_headers + env_headers