some fixes to blas/lapack usage in packages (#1852)
* atlas: fix unit test * openblas: remove symlinks; use lapack_libs.ld_flags in the test * mkl: fix openmp variant of blas/lapack libs * intel-parallel-studio: fix openmp variant of blas/lapack libs * netlib-scalapack: fix blas/lapack for multilib case (e.g. mkl) * arpack-ng: fix blas/lapack for multilib case (e.g. mkl) * petsc: explicitly specify blas/lapack * minor * cantera: fix blas/lapack usage * ipopt: fix blas/lapack usage * netlib-lapack: fix external blas usage * mfem: fix lapack/blas usage * superlu-mt: fix blas usage * flake8 fixes
This commit is contained in:

committed by
Todd Gamblin

parent
cb36aadaf6
commit
1e10309ff7
@@ -79,8 +79,8 @@ def install(self, spec, prefix):
|
||||
options.extend([
|
||||
'-DLAPACK_FOUND=true',
|
||||
'-DLAPACK_INCLUDE_DIRS=%s' % spec['lapack'].prefix.include,
|
||||
'-DLAPACK_LIBRARIES=%s' % (lapack.joined()),
|
||||
'-DBLAS_LIBRARIES=%s' % (blas.joined())
|
||||
'-DLAPACK_LIBRARIES=%s' % (lapack.joined(';')),
|
||||
'-DBLAS_LIBRARIES=%s' % (blas.joined(';'))
|
||||
])
|
||||
|
||||
if '+fpic' in spec:
|
||||
|
Reference in New Issue
Block a user