build: add infrastructure for meson and ninja builds
[dpdk.git] / config / meson.build
1 #   BSD LICENSE
2 #
3 #   Copyright(c) 2017 Intel Corporation.
4 #   All rights reserved.
5 #
6 #   Redistribution and use in source and binary forms, with or without
7 #   modification, are permitted provided that the following conditions
8 #   are met:
9 #
10 #     * Redistributions of source code must retain the above copyright
11 #       notice, this list of conditions and the following disclaimer.
12 #     * Redistributions in binary form must reproduce the above copyright
13 #       notice, this list of conditions and the following disclaimer in
14 #       the documentation and/or other materials provided with the
15 #       distribution.
16 #     * Neither the name of Intel Corporation nor the names of its
17 #       contributors may be used to endorse or promote products derived
18 #       from this software without specific prior written permission.
19 #
20 #   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 #   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 #   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23 #   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24 #   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25 #   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26 #   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 #   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 #   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 #   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 #   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31
32 # set the machine type and cflags for it
33 machine = get_option('machine')
34 dpdk_conf.set('RTE_MACHINE', machine)
35 add_project_arguments('-march=@0@'.format(machine), language: 'c')
36 # some libs depend on maths lib
37 add_project_link_arguments('-lm', language: 'c')
38
39 # add -include rte_config to cflags
40 add_project_arguments('-include', 'rte_config.h', language: 'c')
41
42 # enable extra warnings and disable any unwanted warnings
43 warning_flags = [
44         '-Wsign-compare',
45         '-Wcast-qual',
46         '-Wno-address-of-packed-member',
47         '-Wno-format-truncation'
48 ]
49 foreach arg: warning_flags
50         if cc.has_argument(arg)
51                 add_project_arguments(arg, language: 'c')
52         endif
53 endforeach
54
55 compile_time_cpuflags = []
56 if host_machine.cpu_family().startswith('x86')
57         arch_subdir = 'x86'
58         subdir(arch_subdir)
59 endif
60 dpdk_conf.set('RTE_COMPILE_TIME_CPUFLAGS', ','.join(compile_time_cpuflags))
61
62 # set the install path for the drivers
63 dpdk_conf.set_quoted('RTE_EAL_PMD_PATH', eal_pmd_path)
64
65 # set other values pulled from the build options
66 dpdk_conf.set('RTE_MAX_LCORE', get_option('max_lcores'))
67 dpdk_conf.set('RTE_MAX_NUMA_NODES', get_option('max_numa_nodes'))
68 dpdk_conf.set('RTE_LIBEAL_USE_HPET', get_option('use_hpet'))
69 dpdk_conf.set('RTE_EAL_ALLOW_INV_SOCKET_ID', get_option('allow_invalid_socket_id'))
70 # values which have defaults which may be overridden
71 dpdk_conf.set('RTE_MAX_VFIO_GROUPS', 64)
72
73 install_headers('rte_config.h')