OTF package: use autotools. (#11873)
This commit is contained in:
parent
ae8710fa36
commit
d8f4e0a565
@ -6,7 +6,7 @@
|
|||||||
from spack import *
|
from spack import *
|
||||||
|
|
||||||
|
|
||||||
class Otf(Package):
|
class Otf(AutotoolsPackage):
|
||||||
"""To improve scalability for very large and massively parallel
|
"""To improve scalability for very large and massively parallel
|
||||||
traces the Open Trace Format (OTF) is developed at ZIH as a
|
traces the Open Trace Format (OTF) is developed at ZIH as a
|
||||||
successor format to the Vampir Trace Format (VTF3)."""
|
successor format to the Vampir Trace Format (VTF3)."""
|
||||||
@ -18,10 +18,10 @@ class Otf(Package):
|
|||||||
|
|
||||||
depends_on('zlib')
|
depends_on('zlib')
|
||||||
|
|
||||||
def install(self, spec, prefix):
|
def configure_args(self):
|
||||||
configure('--prefix=%s' % prefix,
|
args = []
|
||||||
'--without-vtf3',
|
|
||||||
'--with-zlib',
|
args.append('--without-vtf3')
|
||||||
'--with-zlibsymbols')
|
args.append('--with-zlib')
|
||||||
make()
|
args.append('--with-zlibsymbols')
|
||||||
make("install")
|
return args
|
||||||
|
Loading…
Reference in New Issue
Block a user