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
)

View file

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