common/mlx5: introduce common library
[dpdk.git] / drivers / net / mlx5 / meson.build
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright 2018 6WIND S.A.
3 # Copyright 2018 Mellanox Technologies, Ltd
4
5 if not is_linux
6         build = false
7         reason = 'only supported on Linux'
8         subdir_done()
9 endif
10
11 allow_experimental_apis = true
12 deps += ['hash', 'common_mlx5']
13 sources = files(
14         'mlx5.c',
15         'mlx5_ethdev.c',
16         'mlx5_flow.c',
17         'mlx5_flow_meter.c',
18         'mlx5_flow_dv.c',
19         'mlx5_flow_verbs.c',
20         'mlx5_mac.c',
21         'mlx5_mr.c',
22         'mlx5_nl.c',
23         'mlx5_rss.c',
24         'mlx5_rxmode.c',
25         'mlx5_rxq.c',
26         'mlx5_rxtx.c',
27         'mlx5_mp.c',
28         'mlx5_stats.c',
29         'mlx5_trigger.c',
30         'mlx5_txq.c',
31         'mlx5_vlan.c',
32         'mlx5_utils.c',
33         'mlx5_socket.c',
34 )
35 if (dpdk_conf.has('RTE_ARCH_X86_64')
36         or dpdk_conf.has('RTE_ARCH_ARM64')
37         or dpdk_conf.has('RTE_ARCH_PPC_64'))
38         sources += files('mlx5_rxtx_vec.c')
39 endif
40 cflags_options = [
41         '-std=c11',
42         '-Wno-strict-prototypes',
43         '-D_BSD_SOURCE',
44         '-D_DEFAULT_SOURCE',
45         '-D_XOPEN_SOURCE=600'
46 ]
47 foreach option:cflags_options
48         if cc.has_argument(option)
49                 cflags += option
50         endif
51 endforeach
52 if get_option('buildtype').contains('debug')
53         cflags += [ '-pedantic', '-UNDEBUG', '-DPEDANTIC' ]
54 else
55         cflags += [ '-DNDEBUG', '-UPEDANTIC' ]
56 endif