Install lite pdb headers
This commit is contained in:
parent
2e05830eb1
commit
c3c70cf704
1 changed files with 2 additions and 0 deletions
|
@ -1,5 +1,6 @@
|
||||||
from spack import *
|
from spack import *
|
||||||
|
|
||||||
|
|
||||||
class Silo(Package):
|
class Silo(Package):
|
||||||
"""Silo is a library for reading and writing a wide variety of scientific
|
"""Silo is a library for reading and writing a wide variety of scientific
|
||||||
data to binary, disk files."""
|
data to binary, disk files."""
|
||||||
|
@ -30,6 +31,7 @@ def install(self, spec, prefix):
|
||||||
'--prefix=%s' % prefix,
|
'--prefix=%s' % prefix,
|
||||||
'--with-hdf5=%s,%s' % (spec['hdf5'].prefix.include, spec['hdf5'].prefix.lib),
|
'--with-hdf5=%s,%s' % (spec['hdf5'].prefix.include, spec['hdf5'].prefix.lib),
|
||||||
'--with-zlib=%s,%s' % (spec['zlib'].prefix.include, spec['zlib'].prefix.lib),
|
'--with-zlib=%s,%s' % (spec['zlib'].prefix.include, spec['zlib'].prefix.lib),
|
||||||
|
'--enable-install-lite-headers',
|
||||||
*config_args)
|
*config_args)
|
||||||
|
|
||||||
make()
|
make()
|
||||||
|
|
Loading…
Reference in a new issue