agent-enviroments/builder/libs/seastar/dpdk/drivers/net/cpfl/meson.build
2024-09-10 17:06:08 +03:00

39 lines
942 B
Meson

# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2023 Intel Corporation
if is_windows
build = false
reason = 'not supported on Windows'
subdir_done()
endif
if dpdk_conf.get('RTE_IOVA_IN_MBUF') == 0
subdir_done()
endif
deps += ['common_idpf']
sources = files(
'cpfl_ethdev.c',
'cpfl_rxtx.c',
)
if arch_subdir == 'x86'
cpfl_avx512_cpu_support = (
cc.get_define('__AVX512F__', args: machine_args) != '' and
cc.get_define('__AVX512BW__', args: machine_args) != '' and
cc.get_define('__AVX512DQ__', args: machine_args) != ''
)
cpfl_avx512_cc_support = (
not machine_args.contains('-mno-avx512f') and
cc.has_argument('-mavx512f') and
cc.has_argument('-mavx512bw') and
cc.has_argument('-mavx512dq')
)
if cpfl_avx512_cpu_support == true or cpfl_avx512_cc_support == true
cflags += ['-DCC_AVX512_SUPPORT']
endif
endif