mkl: fix order of libs (#7280)
This commit is contained in:
parent
41aada9821
commit
82aa76a867
2 changed files with 2 additions and 2 deletions
|
@ -123,7 +123,7 @@ def blas_libs(self):
|
||||||
mkl_root = prefix.mkl.lib
|
mkl_root = prefix.mkl.lib
|
||||||
|
|
||||||
mkl_libs = find_libraries(
|
mkl_libs = find_libraries(
|
||||||
mkl_integer + ['libmkl_core'] + mkl_threading,
|
mkl_integer + mkl_threading + ['libmkl_core'],
|
||||||
root=mkl_root,
|
root=mkl_root,
|
||||||
shared=shared
|
shared=shared
|
||||||
)
|
)
|
||||||
|
|
|
@ -201,7 +201,7 @@ def blas_libs(self):
|
||||||
mkl_root = prefix.compilers_and_libraries.linux.mkl.lib.intel64
|
mkl_root = prefix.compilers_and_libraries.linux.mkl.lib.intel64
|
||||||
|
|
||||||
mkl_libs = find_libraries(
|
mkl_libs = find_libraries(
|
||||||
mkl_integer + ['libmkl_core'] + mkl_threading,
|
mkl_integer + mkl_threading + ['libmkl_core'],
|
||||||
root=mkl_root,
|
root=mkl_root,
|
||||||
shared=shared
|
shared=shared
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue