From: Pavan Nikhilesh Date: Thu, 14 Oct 2021 19:56:51 +0000 (+0530) Subject: net/thunderx: enable build only on 64-bit Linux X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=9ec67c12bd2b3dca95e2ff809db2b8006c11a602;p=dpdk.git net/thunderx: enable build only on 64-bit Linux 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 Acked-by: Jerin Jacob --- 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