* [dpdk-dev] [PATCH] mempool/ring: build on Windows
@ 2020-09-16 10:42 Tal Shnaiderman
2020-09-24 21:09 ` Ranjit Menon
0 siblings, 1 reply; 3+ messages in thread
From: Tal Shnaiderman @ 2020-09-16 10:42 UTC (permalink / raw)
To: dev
Cc: thomas, pallavi.kadam, dmitry.kozliuk, ranjit.menon, navasile,
dmitrym, olivier.matz, arybchenko
Build the ring mempool handler for Windows OS.
Signed-off-by: Tal Shnaiderman <talshn@nvidia.com>
---
drivers/mempool/bucket/meson.build | 5 +++++
drivers/mempool/meson.build | 4 ----
drivers/mempool/octeontx/meson.build | 5 +++++
drivers/mempool/octeontx2/meson.build | 5 +++++
drivers/mempool/stack/meson.build | 5 +++++
5 files changed, 20 insertions(+), 4 deletions(-)
diff --git a/drivers/mempool/bucket/meson.build b/drivers/mempool/bucket/meson.build
index 618d791283..61de2dc9b9 100644
--- a/drivers/mempool/bucket/meson.build
+++ b/drivers/mempool/bucket/meson.build
@@ -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')
diff --git a/drivers/mempool/meson.build b/drivers/mempool/meson.build
index c9609f1453..7520e489f4 100644
--- a/drivers/mempool/meson.build
+++ b/drivers/mempool/meson.build
@@ -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'
diff --git a/drivers/mempool/octeontx/meson.build b/drivers/mempool/octeontx/meson.build
index 3baaf7db25..b5695a9329 100644
--- a/drivers/mempool/octeontx/meson.build
+++ b/drivers/mempool/octeontx/meson.build
@@ -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'
)
diff --git a/drivers/mempool/octeontx2/meson.build b/drivers/mempool/octeontx2/meson.build
index 9fde40f0e9..0226f76d4b 100644
--- a/drivers/mempool/octeontx2/meson.build
+++ b/drivers/mempool/octeontx2/meson.build
@@ -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',
diff --git a/drivers/mempool/stack/meson.build b/drivers/mempool/stack/meson.build
index 580dde79eb..8425772a42 100644
--- a/drivers/mempool/stack/meson.build
+++ b/drivers/mempool/stack/meson.build
@@ -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']
--
2.16.1.windows.4
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [dpdk-dev] [PATCH] mempool/ring: build on Windows
2020-09-16 10:42 [dpdk-dev] [PATCH] mempool/ring: build on Windows Tal Shnaiderman
@ 2020-09-24 21:09 ` Ranjit Menon
2020-10-05 7:58 ` Thomas Monjalon
0 siblings, 1 reply; 3+ messages in thread
From: Ranjit Menon @ 2020-09-24 21:09 UTC (permalink / raw)
To: Tal Shnaiderman, dev
Cc: thomas, pallavi.kadam, dmitry.kozliuk, navasile, dmitrym,
olivier.matz, arybchenko
On 9/16/2020 3:42 AM, Tal Shnaiderman wrote:
> Build the ring mempool handler for Windows OS.
>
> Signed-off-by: Tal Shnaiderman <talshn@nvidia.com>
> ---
> drivers/mempool/bucket/meson.build | 5 +++++
> drivers/mempool/meson.build | 4 ----
> drivers/mempool/octeontx/meson.build | 5 +++++
> drivers/mempool/octeontx2/meson.build | 5 +++++
> drivers/mempool/stack/meson.build | 5 +++++
> 5 files changed, 20 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/mempool/bucket/meson.build b/drivers/mempool/bucket/meson.build
> index 618d791283..61de2dc9b9 100644
> --- a/drivers/mempool/bucket/meson.build
> +++ b/drivers/mempool/bucket/meson.build
> @@ -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')
> diff --git a/drivers/mempool/meson.build b/drivers/mempool/meson.build
> index c9609f1453..7520e489f4 100644
> --- a/drivers/mempool/meson.build
> +++ b/drivers/mempool/meson.build
> @@ -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'
> diff --git a/drivers/mempool/octeontx/meson.build b/drivers/mempool/octeontx/meson.build
> index 3baaf7db25..b5695a9329 100644
> --- a/drivers/mempool/octeontx/meson.build
> +++ b/drivers/mempool/octeontx/meson.build
> @@ -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'
> )
> diff --git a/drivers/mempool/octeontx2/meson.build b/drivers/mempool/octeontx2/meson.build
> index 9fde40f0e9..0226f76d4b 100644
> --- a/drivers/mempool/octeontx2/meson.build
> +++ b/drivers/mempool/octeontx2/meson.build
> @@ -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',
> diff --git a/drivers/mempool/stack/meson.build b/drivers/mempool/stack/meson.build
> index 580dde79eb..8425772a42 100644
> --- a/drivers/mempool/stack/meson.build
> +++ b/drivers/mempool/stack/meson.build
> @@ -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']
Acked-by: Ranjit Menon <ranjit.menon@intel.com
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [dpdk-dev] [PATCH] mempool/ring: build on Windows
2020-09-24 21:09 ` Ranjit Menon
@ 2020-10-05 7:58 ` Thomas Monjalon
0 siblings, 0 replies; 3+ messages in thread
From: Thomas Monjalon @ 2020-10-05 7:58 UTC (permalink / raw)
To: Tal Shnaiderman
Cc: dev, pallavi.kadam, dmitry.kozliuk, navasile, dmitrym,
olivier.matz, arybchenko, Ranjit Menon
24/09/2020 23:09, Ranjit Menon:
> On 9/16/2020 3:42 AM, Tal Shnaiderman wrote:
> > Build the ring mempool handler for Windows OS.
> >
> > Signed-off-by: Tal Shnaiderman <talshn@nvidia.com>
>
> Acked-by: Ranjit Menon <ranjit.menon@intel.com
Applied, thanks
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2020-10-05 7:58 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-16 10:42 [dpdk-dev] [PATCH] mempool/ring: build on Windows Tal Shnaiderman
2020-09-24 21:09 ` Ranjit Menon
2020-10-05 7:58 ` Thomas Monjalon
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).