[dpdk-dev] [PATCH v6 1/3] net/thunderx: enable build only on 64-bit Linux
pbhagavatula at marvell.com
pbhagavatula at marvell.com
Thu Oct 14 21:56:51 CEST 2021
From: Pavan Nikhilesh <pbhagavatula at marvell.com>
Since AARCH32 extension is not implemented on thunderx family, only
enable build for 64bit.
Due to Linux kernel AF(Admin function) driver dependency, only enable
build for Linux.
Signed-off-by: Pavan Nikhilesh <pbhagavatula at marvell.com>
Acked-by: Jerin Jacob <jerinj at marvell.com>
---
v6 Changes:
- Update commit log to describe why 32bit is not supported.
v5 Changes:
- s/fuction/function.
v4 Changes:
- Update commit message regarding dependency on AF driver.
drivers/net/thunderx/meson.build | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/net/thunderx/meson.build b/drivers/net/thunderx/meson.build
index 4bbcea7f93..da665bd76f 100644
--- a/drivers/net/thunderx/meson.build
+++ b/drivers/net/thunderx/meson.build
@@ -1,9 +1,9 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2017 Cavium, Inc
-if is_windows
+if not is_linux or not dpdk_conf.get('RTE_ARCH_64')
build = false
- reason = 'not supported on Windows'
+ reason = 'only supported on 64-bit Linux'
subdir_done()
endif
--
2.17.1
More information about the dev
mailing list