From 8720fe62e3a2a0b1c0d13eb249b2afe8a12b0223 Mon Sep 17 00:00:00 2001 From: "R. G. Esteves" Date: Wed, 17 Jul 2019 05:54:09 -0700 Subject: [PATCH] Added missing libraries to Windows wheel (#1415) --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index d252bfef0e..aa7cc8cdab 100644 --- a/setup.py +++ b/setup.py @@ -118,6 +118,7 @@ elif platform.system() == "Darwin": libs = ['onnxruntime_pybind11_state.so', 'libmkldnn.0.dylib'] # TODO add libmklml and libiomp5 later. else: libs = ['onnxruntime_pybind11_state.pyd', 'mkldnn.dll', 'mklml.dll', 'libiomp5md.dll'] + libs.extend(['ngraph.dll', 'cpu_backend.dll', 'tbb.dll']) if is_manylinux2010: data = []