summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorGregory L. Lee <lee218@llnl.gov>2014-03-14 12:54:28 -0700
committerGregory L. Lee <lee218@llnl.gov>2014-03-14 12:54:28 -0700
commitf0f0c99c55ae5636f64f1651cbb780dc0cf61c79 (patch)
tree6d6255e13f9db9b23cc6d798177d44c431ed718b /lib
parent7b28ee2cd2551bae8adb07ae1f52d495657264aa (diff)
downloadspack-f0f0c99c55ae5636f64f1651cbb780dc0cf61c79.tar.gz
spack-f0f0c99c55ae5636f64f1651cbb780dc0cf61c79.tar.bz2
spack-f0f0c99c55ae5636f64f1651cbb780dc0cf61c79.tar.xz
spack-f0f0c99c55ae5636f64f1651cbb780dc0cf61c79.zip
launchmon dependency added as comment, need Jira SPACK-20 fixed
Diffstat (limited to 'lib')
-rw-r--r--lib/spack/spack/packages/stat.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/spack/spack/packages/stat.py b/lib/spack/spack/packages/stat.py
index c2deecd2f4..b9a83501dd 100644
--- a/lib/spack/spack/packages/stat.py
+++ b/lib/spack/spack/packages/stat.py
@@ -27,15 +27,21 @@ class Stat(Package):
depends_on('libdwarf')
depends_on('dyninst')
depends_on('graphlib')
+ #depends_on('launchmon') # TODO: when added, path gets too long (Jira SPACK-20)!
depends_on('mrnet')
def install(self, spec, prefix):
my_mrnet = spec['mrnet']
my_graphlib = spec['graphlib']
+ #my_launchmon = spec['launchmon']
my_dyninst = spec['dyninst']
my_libdwarf = spec['libdwarf']
# FIXME: Modify the configure line to suit your build system here.
+ # TODO: this uses the launchmon package, but path is too long (see depends_on above) (Jira SPACK-20)
+ #configure("--enable-gui", "--prefix=%s" %prefix, "--with-launchmon=%s" %my_launchmon.prefix, "--with-mrnet=%s" %my_mrnet.prefix, "--with-graphlib=%s" %my_graphlib.prefix, "--with-stackwalker=%s" %my_dyninst.prefix, "--with-libdwarf=%s" %my_libdwarf.prefix)
+
+ # TODO: the configure line above is the proper one once Jira SPACK-20 is fixed
configure("--enable-gui", "--prefix=%s" %prefix, "--with-launchmon=/collab/usr/global/tools/launchmon/chaos_5_x86_64_ib/launchmon-1.0.0-20140312", "--with-mrnet=%s" %my_mrnet.prefix, "--with-graphlib=%s" %my_graphlib.prefix, "--with-stackwalker=%s" %my_dyninst.prefix, "--with-libdwarf=%s" %my_libdwarf.prefix)
# TODO: remove once Jira SPACK-19 is fixed