]> git.droids-corp.org - dpdk.git/commitdiff
common/octeontx: enable build only on 64-bit Linux
authorPavan Nikhilesh <pbhagavatula@marvell.com>
Thu, 14 Oct 2021 19:56:52 +0000 (01:26 +0530)
committerFerruh Yigit <ferruh.yigit@intel.com>
Fri, 15 Oct 2021 17:13:13 +0000 (19:13 +0200)
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>
drivers/common/octeontx/meson.build
drivers/compress/octeontx/meson.build
drivers/crypto/octeontx/meson.build
drivers/event/octeontx/meson.build
drivers/mempool/octeontx/meson.build
drivers/net/octeontx/meson.build

index fcda0f6445f54f0251bf9c610b0cf617c38fe36e..dc060dfea19ca2b2cb2f1571603bc7c15ac68f5b 100644 (file)
@@ -2,9 +2,9 @@
 # Copyright(c) 2018 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
 
index e1b7bed422361153350f51adc7ce18c4b34bc6c4..cd8687fde30e307d52f2d48927a653685c846903 100644 (file)
@@ -1,6 +1,12 @@
 # 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('otx_zip.c', 'otx_zip_pmd.c')
 includes += include_directories('include')
 deps += ['mempool_octeontx', 'bus_pci']
index 244b16230e477150e43ce6e0aa71cf9f1ebd145d..bc6187e1cf2850be4081bae34ccb1aeabbbaec78 100644 (file)
@@ -1,5 +1,12 @@
 # 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
 
 deps += ['bus_pci']
 deps += ['bus_vdev']
index 0d9eec3f2e2a29458843d07056795527b804fe0e..eb17e059d8cbcf2d2afb928874abeb50a36f10ac 100644 (file)
@@ -1,6 +1,12 @@
 # SPDX-License-Identifier: BSD-3-Clause
 # Copyright(c) 2017 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(
         'ssovf_worker.c',
         'ssovf_evdev.c',
index a57213e2d8d43aef386299ad16286c50a1ed116e..fb059281291722080b45e11cece3f599c399b79e 100644 (file)
@@ -1,9 +1,10 @@
 # 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
 
 sources = files(
index 84cd4e1142edc1861306799ced9e79e3ee7c2545..a5a6c9661caa1fb491a29117714e15d8cae6e1da 100644 (file)
@@ -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