Merge pull request #2364 from davydden/ips_mkl

intel-parallel-studio: fix location of MKL libs
This commit is contained in:
Gregory Lee 2016-12-01 09:21:37 -08:00 committed by GitHub
commit 8e816f8f88

View File

@ -86,7 +86,7 @@ def blas_libs(self):
# TODO: TBB threading: ['libmkl_tbb_thread', 'libtbb', 'libstdc++'] # TODO: TBB threading: ['libmkl_tbb_thread', 'libtbb', 'libstdc++']
mkl_libs = find_libraries( mkl_libs = find_libraries(
mkl_integer + ['libmkl_core'] + mkl_threading, mkl_integer + ['libmkl_core'] + mkl_threading,
root=join_path(self.prefix.lib, 'intel64'), root=join_path(self.prefix, 'mkl', 'lib', 'intel64'),
shared=shared shared=shared
) )
system_libs = [ system_libs = [