fix blas/lapack usage after PR 1875 (#3365)
This commit is contained in:

committed by
Adam J. Stewart

parent
c3ac86310e
commit
a36ed7fb9b
@@ -26,7 +26,7 @@
|
||||
|
||||
|
||||
class Magma(CMakePackage):
|
||||
"""The MAGMA project aims to develop a dense linear algebra library
|
||||
"""The MAGMA project aims to develop a dense linear algebra library
|
||||
similar to LAPACK but for heterogeneous/hybrid architectures,
|
||||
starting with current "Multicore+GPU" systems.
|
||||
"""
|
||||
@@ -51,9 +51,9 @@ def cmake_args(self):
|
||||
options.extend([
|
||||
'-DCMAKE_INSTALL_PREFIX=%s' % prefix,
|
||||
'-DCMAKE_INSTALL_NAME_DIR:PATH=%s/lib' % prefix,
|
||||
'-DLAPACK_LIBRARIES=%s;%s' % (spec['blas'].blas_libs,
|
||||
spec['lapack'].lapack_libs)
|
||||
])
|
||||
'-DLAPACK_LIBRARIES=%s;%s' % (spec['blas'].libs,
|
||||
spec['lapack'].libs)
|
||||
])
|
||||
|
||||
if '+fortran' in spec:
|
||||
options.extend([
|
||||
|
Reference in New Issue
Block a user