mkl: fix order of libs (#7280)

This commit is contained in:
Denis Davydov
2018-02-21 19:14:34 +01:00
committed by Massimiliano Culpo
parent 41aada9821
commit 82aa76a867
2 changed files with 2 additions and 2 deletions

View File

@@ -123,7 +123,7 @@ def blas_libs(self):
mkl_root = prefix.mkl.lib
mkl_libs = find_libraries(
mkl_integer + ['libmkl_core'] + mkl_threading,
mkl_integer + mkl_threading + ['libmkl_core'],
root=mkl_root,
shared=shared
)