Skip to content
Snippets Groups Projects
Commit 01657e69 authored by Todd Gamblin's avatar Todd Gamblin
Browse files

Make suite-sparse use spack compilers.

parent f42b1dfc
Branches
Tags
No related merge requests found
...@@ -23,4 +23,14 @@ def install(self, spec, prefix): ...@@ -23,4 +23,14 @@ def install(self, spec, prefix):
# FIXME : this actually uses the current workaround # FIXME : this actually uses the current workaround
# FIXME : (blas / lapack always provide libblas and liblapack as aliases) # FIXME : (blas / lapack always provide libblas and liblapack as aliases)
make('install', 'INSTALL=%s' % prefix, 'BLAS=-lblas', 'LAPACK=-llapack') make('install', 'INSTALL=%s' % prefix,
# inject Spack compiler wrappers
'AUTOCC=no',
'CC=cc',
'CXX=c++',
'F77=f77',
# BLAS arguments require path to libraries
'BLAS=-lblas',
'LAPACK=-llapack')
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment