numam-dpdk/drivers/net/hns3/meson.build
Thomas Monjalon 135155a836 build: align wording of non-support reasons
Reasons for building not supported generally start with lowercase
because printed as the second part of a line.

Other changes:
	- "linux" should be "Linux" with a capital letter.
	- ARCH_X86_64 may be simply x86_64.
	- aarch64 is preferred over arm64.

Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
Acked-by: David Marchand <david.marchand@redhat.com>
2020-11-20 16:05:35 +01:00

39 lines
834 B
Meson

# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2018-2019 Hisilicon Limited
if not is_linux
build = false
reason = 'only supported on Linux'
subdir_done()
endif
if arch_subdir != 'x86' and arch_subdir != 'arm' or not dpdk_conf.get('RTE_ARCH_64')
build = false
reason = 'only supported on x86_64 and aarch64'
subdir_done()
endif
sources = files('hns3_cmd.c',
'hns3_dcb.c',
'hns3_intr.c',
'hns3_ethdev.c',
'hns3_ethdev_vf.c',
'hns3_fdir.c',
'hns3_flow.c',
'hns3_mbx.c',
'hns3_regs.c',
'hns3_rss.c',
'hns3_rxtx.c',
'hns3_stats.c',
'hns3_mp.c')
deps += ['hash']
if arch_subdir == 'arm' and dpdk_conf.get('RTE_ARCH_64')
sources += files('hns3_rxtx_vec.c')
if cc.get_define('__ARM_FEATURE_SVE', args: machine_args) != ''
cflags = ['-DCC_SVE_SUPPORT']
sources += files('hns3_rxtx_vec_sve.c')
endif
endif