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