Skip to content
Snippets Groups Projects
Commit 4d939802 authored by Denis Davydov's avatar Denis Davydov Committed by Todd Gamblin
Browse files

hypre: fix blas/lapack for MKL (#1993)

parent 1dff309a
No related branches found
No related tags found
No related merge requests found
...@@ -61,9 +61,9 @@ def install(self, spec, prefix): ...@@ -61,9 +61,9 @@ def install(self, spec, prefix):
configure_args = [ configure_args = [
'--prefix=%s' % prefix, '--prefix=%s' % prefix,
'--with-lapack-libs=%s' % ' '.join(lapack.names), '--with-lapack-libs=%s' % ' '.join(lapack.names),
'--with-lapack-lib-dirs=%s' % spec['lapack'].prefix.lib, '--with-lapack-lib-dirs=%s' % ' '.join(lapack.directories),
'--with-blas-libs=%s' % ' '.join(blas.names), '--with-blas-libs=%s' % ' '.join(blas.names),
'--with-blas-lib-dirs=%s' % spec['blas'].prefix.lib '--with-blas-lib-dirs=%s' % ' '.join(blas.directories)
] ]
if '+shared' in self.spec: if '+shared' in self.spec:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment