mbuf: build on Windows

Build the lib for Windows.
Export needed EAL functions used by the lib.

Signed-off-by: Tal Shnaiderman <talshn@mellanox.com>
This commit is contained in:
Tal Shnaiderman 2020-06-25 18:24:15 +03:00 committed by Thomas Monjalon
parent 9af385fd89
commit f6d7f40576
3 changed files with 5 additions and 1 deletions

View File

@ -14,6 +14,7 @@ if is_windows
'eal_common_dynmem.c',
'eal_common_errno.c',
'eal_common_fbarray.c',
'eal_common_hexdump.c',
'eal_common_launch.c',
'eal_common_lcore.c',
'eal_common_log.c',

View File

@ -3,6 +3,7 @@ EXPORTS
__rte_trace_mem_per_thread_alloc
__rte_trace_point_emit_field
__rte_trace_point_register
per_lcore__lcore_id
per_lcore__rte_errno
per_lcore_trace_mem
per_lcore_trace_point_sz
@ -17,6 +18,7 @@ EXPORTS
rte_eal_has_pci
rte_eal_init
rte_eal_iova_mode
rte_eal_mbuf_user_pool_ops
rte_eal_mp_remote_launch
rte_eal_mp_wait_lcore
rte_eal_process_type
@ -26,6 +28,7 @@ EXPORTS
rte_eal_tailq_register
rte_eal_using_phys_addrs
rte_free
rte_hexdump
rte_malloc
rte_malloc_dump_stats
rte_malloc_get_socket_stats

View File

@ -40,7 +40,7 @@ if is_windows
'kvargs',
'eal',
'ring',
'mempool', 'pci',
'mempool', 'mbuf', 'pci',
] # only supported libraries for windows
endif