[v4,5/5] ethdev: compiling ethdev under Windows

Message ID 20200804062947.6176-6-fady@mellanox.com (mailing list archive)
State Superseded, archived
Delegated to: Thomas Monjalon
Headers
Series compiling ethdev lib under windows |

Checks

Context Check Description
ci/checkpatch success coding style OK
ci/Intel-compilation fail apply issues

Commit Message

Fady Bader Aug. 4, 2020, 6:29 a.m. UTC
  Compiling needed libraries for ethdev under Windows.

Signed-off-by: Fady Bader <fady@mellanox.com>
---
 lib/meson.build | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
  

Comments

Narcisa Ana Maria Vasile Aug. 4, 2020, 6:51 p.m. UTC | #1
On Tue, Aug 04, 2020 at 09:29:47AM +0300, Fady Bader wrote:
> Compiling needed libraries for ethdev under Windows.
> 
> Signed-off-by: Fady Bader <fady@mellanox.com>
> ---
>  lib/meson.build | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
Acked-by: Narcisa Vasile <navasile@linux.microsoft.com>
  

Patch

diff --git a/lib/meson.build b/lib/meson.build
index 6bbaf242a9..c145240eb9 100644
--- a/lib/meson.build
+++ b/lib/meson.build
@@ -38,9 +38,10 @@  libraries = [
 if is_windows
 	libraries = [
 		'kvargs',
+		'telemetry',
 		'eal',
 		'ring',
-		'mempool', 'mbuf', 'pci', 'net',
+		'mempool', 'mbuf', 'net', 'meter', 'ethdev', 'pci', # core
 	] # only supported libraries for windows
 endif