Addind missing dependency nanos->extrae necessary for traces
This commit is contained in:
parent
853784d382
commit
5f3bcbfded
1 changed files with 2 additions and 1 deletions
|
@ -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")
|
||||
|
||||
|
|
Loading…
Reference in a new issue