armadillo: use libs to provide arpack and superlu libraries (#5777)

This commit is contained in:
Michael F. Herbst 2017-10-16 12:57:01 +02:00 committed by Massimiliano Culpo
parent f6c16de6de
commit d0cf3db46e

View File

@ -59,20 +59,16 @@ class Armadillo(CMakePackage):
def cmake_args(self):
spec = self.spec
arpack = find_libraries('libarpack', root=spec[
'arpack-ng'].prefix.lib64, shared=True)
superlu = find_libraries('libsuperlu', root=spec[
'superlu'].prefix, shared=False, recurse=True)
return [
# ARPACK support
'-DARPACK_LIBRARY={0}'.format(arpack.joined()),
'-DARPACK_LIBRARY={0}'.format(spec['arpack-ng'].libs.joined(";")),
# BLAS support
'-DBLAS_LIBRARY={0}'.format(spec['blas'].libs.joined()),
'-DBLAS_LIBRARY={0}'.format(spec['blas'].libs.joined(";")),
# LAPACK support
'-DLAPACK_LIBRARY={0}'.format(spec['lapack'].libs.joined()),
'-DLAPACK_LIBRARY={0}'.format(spec['lapack'].libs.joined(";")),
# SuperLU support
'-DSuperLU_INCLUDE_DIR={0}'.format(spec['superlu'].prefix.include),
'-DSuperLU_LIBRARY={0}'.format(superlu.joined()),
'-DSuperLU_LIBRARY={0}'.format(spec['superlu'].libs.joined(";")),
# HDF5 support
'-DDETECT_HDF5={0}'.format('ON' if '+hdf5' in spec else 'OFF')
]