e1369718f5
Since AARCH32 extension is not implemented on octeontx family, only enable build for 64bit. Due to Linux kernel AF(Admin function) driver dependency, only enable build for 64-bit Linux. Signed-off-by: Pavan Nikhilesh <pbhagavatula@marvell.com> Acked-by: Jerin Jacob <jerinj@marvell.com>
12 lines
251 B
Meson
12 lines
251 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2018 Cavium, Inc
|
|
#
|
|
|
|
if not is_linux or not dpdk_conf.get('RTE_ARCH_64')
|
|
build = false
|
|
reason = 'only supported on 64-bit Linux'
|
|
subdir_done()
|
|
endif
|
|
|
|
sources = files('octeontx_mbox.c')
|