]> git.droids-corp.org - dpdk.git/blobdiff - lib/eal/windows/meson.build
eal/linux: fix illegal memory access in uevent handler
[dpdk.git] / lib / eal / windows / meson.build
index fc12fefd0dc1070e6fad526bd0a6a37443291602..845e406ca1071b34a5c85116471c96fd922a8511 100644 (file)
@@ -24,3 +24,13 @@ sources += files(
 )
 
 dpdk_conf.set10('RTE_EAL_NUMA_AWARE_HUGEPAGES', true)
+
+ext_deps += [
+        cc.find_library('dbghelp'),
+        cc.find_library('setupapi'),
+        cc.find_library('ws2_32'),
+]
+if is_ms_linker
+        # Contrary to docs, VirtualAlloc2() is exported by mincore.lib.
+        ext_deps += cc.find_library('mincore')
+endif