Addind missing dependency nanos->extrae necessary for traces

This commit is contained in:
Luc Jaulmes 2014-07-29 09:11:06 -07:00 committed by Todd Gamblin
parent 853784d382
commit 5f3bcbfded

View file

@ -16,6 +16,7 @@ class Ompss(Package):
depends_on("mpi")
#depends_on("openmp")
depends_on("hwloc")
depends_on("extrae")
def install(self, spec, prefix):
if 'openmpi' in spec:
@ -30,7 +31,7 @@ def install(self, spec, prefix):
openmp_options.append( "--enable-tl-openmp-intel" )
os.chdir(glob.glob('./nanox-*').pop())
configure("--prefix=%s" % prefix, "--with-mcc=%s" % prefix, "--with-hwloc=%s" % spec['hwloc'].prefix)
configure("--prefix=%s" % prefix, "--with-mcc=%s" % prefix, "--with-extrae=%s" % spec['extrae'].prefix, "--with-hwloc=%s" % spec['hwloc'].prefix)
make()
make("install")