]> git.droids-corp.org - dpdk.git/commitdiff
mempool/ring: build on Windows
authorTal Shnaiderman <talshn@nvidia.com>
Wed, 16 Sep 2020 10:42:04 +0000 (13:42 +0300)
committerThomas Monjalon <thomas@monjalon.net>
Mon, 5 Oct 2020 08:07:17 +0000 (10:07 +0200)
Build the ring mempool handler for Windows OS.

Signed-off-by: Tal Shnaiderman <talshn@nvidia.com>
Acked-by: Ranjit Menon <ranjit.menon@intel.com>
drivers/mempool/bucket/meson.build
drivers/mempool/meson.build
drivers/mempool/octeontx/meson.build
drivers/mempool/octeontx2/meson.build
drivers/mempool/stack/meson.build

index 618d791283b3a0cbbf691f7bbd95c99d76adb572..61de2dc9b9c58807be1cc9ac6b443c558e134949 100644 (file)
@@ -6,4 +6,9 @@
 # This software was jointly developed between OKTET Labs (under contract
 # for Solarflare) and Solarflare Communications, Inc.
 
+if is_windows
+       build = false
+       reason = 'not supported on Windows'
+endif
+
 sources = files('rte_mempool_bucket.c')
index c9609f1453cb4d35b1f3b0493655d7c5685d2f14..7520e489f413e22335dfaef84ad1a1e0d8ca04f0 100644 (file)
@@ -1,10 +1,6 @@
 # SPDX-License-Identifier: BSD-3-Clause
 # Copyright(c) 2017 Intel Corporation
 
-if is_windows
-       subdir_done()
-endif
-
 drivers = ['bucket', 'dpaa', 'dpaa2', 'octeontx', 'octeontx2', 'ring', 'stack']
 std_deps = ['mempool']
 config_flag_fmt = 'RTE_LIBRTE_@0@_MEMPOOL'
index 3baaf7db25d3e99320bc1016b23af6de25140f63..b5695a93292e4cc1f30a1e807b111bba5ace5209 100644 (file)
@@ -1,6 +1,11 @@
 # SPDX-License-Identifier: BSD-3-Clause
 # Copyright(c) 2017 Cavium, Inc
 
+if is_windows
+       build = false
+       reason = 'not supported on Windows'
+endif
+
 sources = files('octeontx_fpavf.c',
                'rte_mempool_octeontx.c'
 )
index 9fde40f0e92892f216d196ffb07a07f988ca5f19..0226f76d4b915f9eafbcaf113dabdd9a2e01edd1 100644 (file)
@@ -2,6 +2,11 @@
 # Copyright(C) 2019 Marvell International Ltd.
 #
 
+if is_windows
+       build = false
+       reason = 'not supported on Windows'
+endif
+
 sources = files('otx2_mempool_ops.c',
                'otx2_mempool.c',
                'otx2_mempool_irq.c',
index 580dde79eb816f1e7d6f012d2fd3125c4fa23108..8425772a4242cfa6f84f5188f857811e9694a992 100644 (file)
@@ -1,6 +1,11 @@
 # SPDX-License-Identifier: BSD-3-Clause
 # Copyright(c) 2017-2019 Intel Corporation
 
+if is_windows
+       build = false
+       reason = 'not supported on Windows'
+endif
+
 sources = files('rte_mempool_stack.c')
 
 deps += ['stack']