Skip to content
Snippets Groups Projects
Commit 6ec46ca8 authored by Pramod Kumbhar's avatar Pramod Kumbhar Committed by Todd Gamblin
Browse files

updated to latest available package and fixed installation issue (old packages...

updated to latest available package and fixed installation issue (old packages are no longer available for download) (#1523)
parent 86cad961
No related branches found
No related tags found
No related merge requests found
...@@ -53,8 +53,8 @@ class Extrae(Package): ...@@ -53,8 +53,8 @@ class Extrae(Package):
programming models either alone or in conjunction with MPI : programming models either alone or in conjunction with MPI :
OpenMP, CUDA, OpenCL, pthread, OmpSs""" OpenMP, CUDA, OpenCL, pthread, OmpSs"""
homepage = "http://www.bsc.es/computer-sciences/extrae" homepage = "http://www.bsc.es/computer-sciences/extrae"
url = "http://www.bsc.es/ssl/apps/performanceTools/files/extrae-3.0.1.tar.bz2" url = "http://www.bsc.es/ssl/apps/performanceTools/files/extrae-3.3.0.tar.bz2"
version('3.0.1', 'a6a8ca96cd877723cd8cc5df6bdb922b') version('3.3.0', 'f46e3f1a6086b5b3ac41c9585b42952d')
depends_on("mpi") depends_on("mpi")
depends_on("dyninst") depends_on("dyninst")
...@@ -62,6 +62,9 @@ class Extrae(Package): ...@@ -62,6 +62,9 @@ class Extrae(Package):
depends_on("boost") depends_on("boost")
depends_on("libdwarf") depends_on("libdwarf")
depends_on("papi") depends_on("papi")
depends_on("libelf")
depends_on("libxml2")
depends_on("binutils+libiberty")
def install(self, spec, prefix): def install(self, spec, prefix):
if 'openmpi' in spec: if 'openmpi' in spec:
...@@ -80,6 +83,9 @@ def install(self, spec, prefix): ...@@ -80,6 +83,9 @@ def install(self, spec, prefix):
"--with-papi=%s" % spec['papi'].prefix, "--with-papi=%s" % spec['papi'].prefix,
"--with-dyninst-headers=%s" % spec[ "--with-dyninst-headers=%s" % spec[
'dyninst'].prefix.include, 'dyninst'].prefix.include,
"--with-elf=%s" % spec['libelf'].prefix,
"--with-xml-prefix=%s" % spec['libxml2'].prefix,
"--with-binutils=%s" % spec['binutils'].prefix,
"--with-dyninst-libs=%s" % spec['dyninst'].prefix.lib) "--with-dyninst-libs=%s" % spec['dyninst'].prefix.lib)
make() make()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment