From f6063344e0a725467cec1c9943b940482617ed66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Ilia=C5=A1?= Date: Wed, 23 Dec 2015 08:43:26 +0100 Subject: [PATCH] provide threaded essl library only It's better to use threaded essl library on IBM AIX, could we have it please ? Standard IBM AIX has both library types: ~~~ ilias@f01c10n02:~/work/qch/software/dirac/trunk/cmake/downloaded/.ar t /usr/lib/libesslsmp.a essl.o ilias@f01c10n02:~/work/qch/software/dirac/trunk/cmake/downloaded/.ar t /usr/lib/libessl.a essl.o ilias@f01c10n02:~/work/qch/software/dirac/trunk/cmake/downloaded/. ~~~ --- modules/math_libs.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/math_libs.cmake b/modules/math_libs.cmake index 75b8771..313cad6 100644 --- a/modules/math_libs.cmake +++ b/modules/math_libs.cmake @@ -88,8 +88,8 @@ if(ENABLE_64BIT_INTEGERS) set(ESSL_BLAS_LIBS esslsmp6464) set(ESSL_LAPACK_LIBS esslsmp6464) else() - set(ESSL_BLAS_LIBS essl) - set(ESSL_LAPACK_LIBS essl) + set(ESSL_BLAS_LIBS esslsmp) + set(ESSL_LAPACK_LIBS esslsmp) endif() #-------------------------------------------------------------------------------