908a2cab74be0e5e1308ab7e6688aa44d3c5ab23
[dpdk.git] / drivers / net / ice / meson.build
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2018 Intel Corporation
3
4 allow_experimental_apis = true
5
6 subdir('base')
7 objs = [base_objs]
8
9 sources = files(
10         'ice_ethdev.c',
11         'ice_rxtx.c',
12         'ice_switch_filter.c',
13         'ice_generic_flow.c',
14         'ice_fdir_filter.c'
15         )
16
17 deps += ['hash']
18 includes += include_directories('base')
19
20 if arch_subdir == 'x86'
21         sources += files('ice_rxtx_vec_sse.c')
22
23         # compile AVX2 version if either:
24         # a. we have AVX supported in minimum instruction set baseline
25         # b. it's not minimum instruction set, but supported by compiler
26         if dpdk_conf.has('RTE_MACHINE_CPUFLAG_AVX2')
27                 sources += files('ice_rxtx_vec_avx2.c')
28         elif cc.has_argument('-mavx2')
29                 ice_avx2_lib = static_library('ice_avx2_lib',
30                                 'ice_rxtx_vec_avx2.c',
31                                 dependencies: [static_rte_ethdev,
32                                         static_rte_kvargs, static_rte_hash],
33                                 include_directories: includes,
34                                 c_args: [cflags, '-mavx2'])
35                 objs += ice_avx2_lib.extract_objects('ice_rxtx_vec_avx2.c')
36         endif
37 endif
38
39 install_headers('rte_pmd_ice.h')