93dfdf0a0c
- Remove unused dependencies atlas/blas - Add hdf5/superlu dependency (As superlu needs openblasCompat, we also use it here.) - Add support for darwin - Make use of OpenBLAS-LAPACK in armadillo OpenBLAS (confusingly) contains LAPACK already by default, so we simply use OpenBLAS when searching for LAPACK. The better solution would be for armadillo to use cmake built in FindBLAS/FindLAPACK which both would find OpenBLAS.
14 lines
568 B
Diff
14 lines
568 B
Diff
diff --git a/cmake_aux/Modules/ARMA_FindLAPACK.cmake b/cmake_aux/Modules/ARMA_FindLAPACK.cmake
|
|
index 5395afb..a203c93 100644
|
|
--- a/cmake_aux/Modules/ARMA_FindLAPACK.cmake
|
|
+++ b/cmake_aux/Modules/ARMA_FindLAPACK.cmake
|
|
@@ -5,7 +5,7 @@
|
|
# also defined, but not for general use are
|
|
# LAPACK_LIBRARY, where to find the LAPACK library.
|
|
|
|
-SET(LAPACK_NAMES ${LAPACK_NAMES} lapack)
|
|
+SET(LAPACK_NAMES ${LAPACK_NAMES} openblas)
|
|
FIND_LIBRARY(LAPACK_LIBRARY
|
|
NAMES ${LAPACK_NAMES}
|
|
PATHS /usr/lib64/atlas /usr/lib/atlas /usr/lib64 /usr/lib /usr/local/lib64 /usr/local/lib
|
|
|