]> git.droids-corp.org - dpdk.git/commitdiff
mempool/stack: build on Windows
authorJie Zhou <jizh@linux.microsoft.com>
Fri, 1 Oct 2021 00:50:12 +0000 (17:50 -0700)
committerThomas Monjalon <thomas@monjalon.net>
Fri, 1 Oct 2021 14:46:05 +0000 (16:46 +0200)
Enable build of mempool/stack on Windows.

Signed-off-by: Jie Zhou <jizh@linux.microsoft.com>
Acked-by: Dmitry Kozlyuk <dmitry.kozliuk@gmail.com>
drivers/mempool/stack/meson.build
lib/meson.build
lib/stack/rte_stack.c

index 371cf131b16d8dac78b4e3fee3063955ad00ddc4..580dde79eb816f1e7d6f012d2fd3125c4fa23108 100644 (file)
@@ -1,11 +1,6 @@
 # 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']
index 1673ca4323c01e520583ca975fd0491509a6dec2..9c4841fe404bd95600ef9abbc14a9fb0ce08697a 100644 (file)
@@ -85,6 +85,7 @@ if is_windows
             'gso',
             'latencystats',
             'pdump',
+            'stack',
     ] # only supported libraries for windows
 endif
 
index f1cbb9803ffc98c5ed32969bcd6f49c22a93e4b0..5e56cd9f0cd3377103830bd0e1ccaf5e1657393f 100644 (file)
@@ -3,6 +3,7 @@
  */
 
 #include <string.h>
+#include <sys/queue.h>
 
 #include <rte_string_fns.h>
 #include <rte_atomic.h>