提交 dc412f1c authored 作者: notoraptor's avatar notoraptor

Fix MKL linking on Windows.

上级 926dec89
...@@ -1359,7 +1359,7 @@ def default_blas_ldflags(): ...@@ -1359,7 +1359,7 @@ def default_blas_ldflags():
else: else:
# This branch is executed if no exception was raised # This branch is executed if no exception was raised
if sys.platform == "win32": if sys.platform == "win32":
lib_path = [os.path.join(sys.prefix, 'Library', 'bin')] lib_path = os.path.join(sys.prefix, 'Library', 'bin')
flags = ['-L"%s"' % lib_path] flags = ['-L"%s"' % lib_path]
else: else:
lib_path = blas_info.get('library_dirs', []) lib_path = blas_info.get('library_dirs', [])
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论