2021-02-05 08:48:47 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
# Copyright(C) 2020 Marvell International Ltd.
|
|
|
|
#
|
|
|
|
|
|
|
|
if not is_linux or not dpdk_conf.get('RTE_ARCH_64')
|
2022-09-06 04:00:10 +00:00
|
|
|
build = false
|
|
|
|
reason = 'only supported on 64-bit Linux'
|
|
|
|
subdir_done()
|
2021-02-05 08:48:47 +00:00
|
|
|
endif
|
|
|
|
|
2022-09-06 04:00:10 +00:00
|
|
|
sources = files(
|
2023-09-13 12:21:49 +00:00
|
|
|
'cn9k_regexdev.c',
|
2022-09-06 04:00:10 +00:00
|
|
|
)
|
2021-02-05 08:48:47 +00:00
|
|
|
|
2025-01-10 11:50:43 +00:00
|
|
|
deps += ['bus_pci']
|
2023-09-13 12:21:49 +00:00
|
|
|
deps += ['common_cnxk', 'mempool_cnxk']
|