# 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
# 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']
# 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']
# 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',
# 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(
# 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