From 2d8eb20ad4e8789bd819701894dcd2c8877e0f5a Mon Sep 17 00:00:00 2001 From: Ophir Munk Date: Thu, 1 Oct 2020 18:30:59 +0300 Subject: [PATCH] hash: build on Windows Build the lib for Windows. Export the needed function from eal. Signed-off-by: Ophir Munk Signed-off-by: Tal Shnaiderman Tested-by: Pallavi Kadam Acked-by: Pallavi Kadam --- lib/librte_eal/rte_eal_exports.def | 2 ++ lib/meson.build | 1 + 2 files changed, 3 insertions(+) diff --git a/lib/librte_eal/rte_eal_exports.def b/lib/librte_eal/rte_eal_exports.def index cda3e0c79f..7b35beb702 100644 --- a/lib/librte_eal/rte_eal_exports.def +++ b/lib/librte_eal/rte_eal_exports.def @@ -6,6 +6,7 @@ EXPORTS rte_bus_register rte_calloc rte_calloc_socket + rte_cpu_get_flag_enabled rte_dev_is_probed rte_devargs_insert rte_devargs_next @@ -69,6 +70,7 @@ EXPORTS rte_vfio_container_dma_unmap rte_vlog rte_realloc + rte_rtm_supported rte_strscpy rte_zmalloc rte_zmalloc_socket diff --git a/lib/meson.build b/lib/meson.build index d8b358e5f4..e5597f174c 100644 --- a/lib/meson.build +++ b/lib/meson.build @@ -42,6 +42,7 @@ if is_windows 'eal', 'ring', 'mempool', 'mbuf', 'net', 'meter', 'ethdev', 'pci', + 'hash', ] # only supported libraries for windows endif -- 2.20.1