]> git.droids-corp.org - dpdk.git/commitdiff
app/testpmd: build on Windows
authorJie Zhou <jizh@linux.microsoft.com>
Tue, 29 Jun 2021 20:50:22 +0000 (13:50 -0700)
committerAndrew Rybchenko <Andrew.Rybchenko@oktetlabs.ru>
Fri, 2 Jul 2021 17:03:03 +0000 (19:03 +0200)
- Disable unsupported apps on Windows
- Enable building of testpmd on Windows

Signed-off-by: Jie Zhou <jizh@linux.microsoft.com>
Acked-by: Tal Shnaiderman <talshn@nvidia.com>
Acked-by: Dmitry Kozlyuk <dmitry.kozliuk@gmail.com>
15 files changed:
app/meson.build
app/pdump/meson.build
app/proc-info/meson.build
app/test-acl/meson.build
app/test-bbdev/meson.build
app/test-cmdline/meson.build
app/test-compress-perf/meson.build
app/test-crypto-perf/meson.build
app/test-eventdev/meson.build
app/test-fib/meson.build
app/test-flow-perf/meson.build
app/test-pipeline/meson.build
app/test-regex/meson.build
app/test-sad/meson.build
app/test/meson.build

index 35e53861bb4b07e08727e3a59b1d346cde678f96..4c6049807cc30db0a6a939f1a48efdb0e0271dbd 100644 (file)
@@ -1,10 +1,6 @@
 # SPDX-License-Identifier: BSD-3-Clause
 # Copyright(c) 2017-2019 Intel Corporation
 
-if is_windows
-    subdir_done()
-endif
-
 apps = [
         'pdump',
         'proc-info',
index 7bb908e047701838c258ab3c7a8a80b91eaa4300..db1fcadbfe2cb4634970e259fe9ced0f3db0bcb7 100644 (file)
@@ -1,5 +1,11 @@
 # SPDX-License-Identifier: BSD-3-Clause
 # Copyright(c) 2018 Intel Corporation
 
+if is_windows
+       build = false
+       reason = 'not supported on Windows'
+       subdir_done()
+endif
+
 sources = files('main.c')
 deps += ['ethdev', 'kvargs', 'pdump']
index f050c4a9b4eaeeee828bb3316e62f474ffca8f0e..82ed05bb0b4e54a0582af8895538a7d21e4950d0 100644 (file)
@@ -1,5 +1,11 @@
 # SPDX-License-Identifier: BSD-3-Clause
 # Copyright(c) 2018 Intel Corporation
 
+if is_windows
+       build = false
+       reason = 'not supported on Windows'
+       subdir_done()
+endif
+
 sources = files('main.c')
 deps += ['ethdev', 'metrics', 'security']
index d5c2581b41397fc2f5f0f8d1dc270a8ca09fd919..14d36b33e930e10a72671a20b2de54bf7b0b6551 100644 (file)
@@ -1,5 +1,11 @@
 # SPDX-License-Identifier: BSD-3-Clause
 # Copyright(c) 2019 Intel Corporation
 
+if is_windows
+       build = false
+       reason = 'not supported on Windows'
+       subdir_done()
+endif
+
 sources = files('main.c')
 deps += ['acl', 'net']
index 57335641f0aae2c2c7f3ea962d74cda3f5904d53..edb9deef8429bc3e1982642ff5a164fda042a5ae 100644 (file)
@@ -1,6 +1,12 @@
 # SPDX-License-Identifier: BSD-3-Clause
 # Copyright(c) 2018 Intel Corporation
 
+if is_windows
+       build = false
+       reason = 'not supported on Windows'
+       subdir_done()
+endif
+
 sources = files(
         'main.c',
         'test_bbdev.c',
index 9d0a9aeb6e1ff3eddb2406d07d6791cd6f211ca2..08988212000a694fcf2ada2d8add462260721e6a 100644 (file)
@@ -1,5 +1,11 @@
 # SPDX-License-Identifier: BSD-3-Clause
 # Copyright(c) 2019 Intel Corporation
 
+if is_windows
+       build = false
+       reason = 'not supported on Windows'
+       subdir_done()
+endif
+
 sources = files('commands.c', 'cmdline_test.c')
 deps += 'cmdline'
index 3f79e2da9d5386e0cafa8e88fd2fe7fd4e4eb5f7..f29c6ee86390d4f1600452bec5d4071209c13757 100644 (file)
@@ -1,6 +1,12 @@
 # SPDX-License-Identifier: BSD-3-Clause
 # Copyright(c) 2018 Intel Corporation
 
+if is_windows
+       build = false
+       reason = 'not supported on Windows'
+       subdir_done()
+endif
+
 sources = files(
         'comp_perf_options_parse.c',
         'comp_perf_test_common.c',
index 20444b791211a0858f1b07c4385383bbc99f31b7..ef3582a87c861f9da783e056e8c4bec5ddb879d4 100644 (file)
@@ -1,6 +1,12 @@
 # SPDX-License-Identifier: BSD-3-Clause
 # Copyright(c) 2018 Intel Corporation
 
+if is_windows
+       build = false
+       reason = 'not supported on Windows'
+       subdir_done()
+endif
+
 sources = files(
         'cperf_ops.c',
         'cperf_options_parsing.c',
index 45c3ff4566380163efc09a4bb544ea46a581623d..17be36067717298419c20cc9731727cfd4435dcd 100644 (file)
@@ -1,6 +1,12 @@
 # SPDX-License-Identifier: BSD-3-Clause
 # Copyright(c) 2017 Cavium, Inc
 
+if is_windows
+       build = false
+       reason = 'not supported on Windows'
+       subdir_done()
+endif
+
 sources = files(
         'evt_main.c',
         'evt_options.c',
index f74ac651c09548822da6ea8974ec48117e7f1bfe..3360ea02b0c9560fda51460639f963518af00238 100644 (file)
@@ -1,5 +1,11 @@
 # SPDX-License-Identifier: BSD-3-Clause
 # Copyright(c) 2019 Intel Corporation
 
+if is_windows
+       build = false
+       reason = 'not supported on Windows'
+       subdir_done()
+endif
+
 sources = files('main.c')
 deps += ['fib', 'lpm', 'net']
index 1d860e036af617d8f2868b9bc87caa90327ec9c2..a33cad9078e8c8fb2c406131af2e972d7afea6e3 100644 (file)
@@ -1,6 +1,12 @@
 # SPDX-License-Identifier: BSD-3-Clause
 # Copyright(c) 2020 Mellanox Technologies, Ltd
 
+if is_windows
+       build = false
+       reason = 'not supported on Windows'
+       subdir_done()
+endif
+
 sources = files(
         'actions_gen.c',
         'flow_gen.c',
index fd91f83231f8a2198bdf8cb97f2f25052a29820e..7d123e32fb77e030ec5dc830cafbd5dc862d56e4 100644 (file)
@@ -1,6 +1,12 @@
 # SPDX-License-Identifier: BSD-3-Clause
 # Copyright(c) 2019 Intel Corporation
 
+if is_windows
+       build = false
+       reason = 'not supported on Windows'
+       subdir_done()
+endif
+
 sources = files(
         'config.c',
         'init.c',
index 472677fb60a8885248d7649000ad13b5ed759fee..02b101980eb550e20ae989d991f5b97854c461cd 100644 (file)
@@ -1,5 +1,11 @@
 # SPDX-License-Identifier: BSD-3-Clause
 # Copyright 2020 Mellanox Technologies, Ltd
 
+if is_windows
+       build = false
+       reason = 'not supported on Windows'
+       subdir_done()
+endif
+
 sources = files('main.c')
 deps = ['regexdev']
index db15b658d7740349f541def2a56e5120aff11efd..3d15727a018179d48fbb951b31ad35ab611d96cd 100644 (file)
@@ -1,5 +1,11 @@
 # SPDX-License-Identifier: BSD-3-Clause
 # Copyright(c) 2019 Intel Corporation
 
+if is_windows
+       build = false
+       reason = 'not supported on Windows'
+       subdir_done()
+endif
+
 sources = files('main.c')
 deps += ['ipsec', 'net']
index ef90b16f168bf5742ffdd5045ad8d87c128323df..09aece3fdc060af591cc8a8d123ad41a50cb7935 100644 (file)
@@ -1,6 +1,12 @@
 # SPDX-License-Identifier: BSD-3-Clause
 # Copyright(c) 2017 Intel Corporation
 
+if is_windows
+       build = false
+       reason = 'not supported on Windows'
+       subdir_done()
+endif
+
 if not get_option('tests')
     subdir_done()
 endif