flake 8 fixes
This commit is contained in:
parent
4c063c6055
commit
4e27d91351
1 changed files with 16 additions and 15 deletions
|
@ -44,16 +44,17 @@ class SuiteSparse(Package):
|
||||||
depends_on('metis@5.1.0', when='@4.5.1')
|
depends_on('metis@5.1.0', when='@4.5.1')
|
||||||
depends_on('metis@5.1.0', when='@4.5.3')
|
depends_on('metis@5.1.0', when='@4.5.3')
|
||||||
# FIXME:
|
# FIXME:
|
||||||
# in @4.5.1. TBB support in SPQR seems to be broken as TBB-related linkng flags
|
# in @4.5.1. TBB support in SPQR seems to be broken as TBB-related linkng
|
||||||
# does not seem to be used, which leads to linking errors on Linux.
|
# flags does not seem to be used, which leads to linking errors on Linux.
|
||||||
# Try re-enabling in future versions.
|
# Try re-enabling in future versions.
|
||||||
# depends_on('tbb', when='+tbb')
|
# depends_on('tbb', when='+tbb')
|
||||||
|
|
||||||
def install(self, spec, prefix):
|
def install(self, spec, prefix):
|
||||||
# The build system of SuiteSparse is quite old-fashioned
|
# The build system of SuiteSparse is quite old-fashioned.
|
||||||
# It's basically a plain Makefile which include an header (SuiteSparse_config/SuiteSparse_config.mk)
|
# It's basically a plain Makefile which include an header
|
||||||
# with a lot of convoluted logic in it.
|
# (SuiteSparse_config/SuiteSparse_config.mk)with a lot of convoluted
|
||||||
# Any kind of customization will need to go through filtering of that file
|
# logic in it. Any kind of customization will need to go through
|
||||||
|
# filtering of that file
|
||||||
|
|
||||||
make_args = ['INSTALL=%s' % prefix]
|
make_args = ['INSTALL=%s' % prefix]
|
||||||
|
|
||||||
|
@ -80,9 +81,9 @@ def install(self, spec, prefix):
|
||||||
])
|
])
|
||||||
|
|
||||||
# BLAS arguments require path to libraries
|
# BLAS arguments require path to libraries
|
||||||
# FIXME : (blas / lapack always provide libblas and liblapack as aliases)
|
# FIXME: (blas/lapack always provide libblas and liblapack as aliases)
|
||||||
if '@4.5.1' in spec:
|
if '@4.5.1' in spec:
|
||||||
# adding -lstdc++ is clearly an ugly way to do this, but it follows suit
|
# adding -lstdc++ is clearly an ugly way to do this, but it follows
|
||||||
# with the TCOV path of SparseSuite 4.5.1's Suitesparse_config.mk
|
# with the TCOV path of SparseSuite 4.5.1's Suitesparse_config.mk
|
||||||
make_args.extend([
|
make_args.extend([
|
||||||
'BLAS=-lblas -lstdc++',
|
'BLAS=-lblas -lstdc++',
|
||||||
|
|
Loading…
Reference in a new issue