summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorAdam J. Stewart <ajstewart426@gmail.com>2019-07-31 12:54:09 -0500
committerGitHub <noreply@github.com>2019-07-31 12:54:09 -0500
commitf7d1df4d3a605989e3856551748aea7ad1e1c5e2 (patch)
treeba31ab5fce12b9e39f5e06149851435ec138ea39 /var
parent65a1db87f88d27e17415a598944162dd4abb7416 (diff)
downloadspack-f7d1df4d3a605989e3856551748aea7ad1e1c5e2.tar.gz
spack-f7d1df4d3a605989e3856551748aea7ad1e1c5e2.tar.bz2
spack-f7d1df4d3a605989e3856551748aea7ad1e1c5e2.tar.xz
spack-f7d1df4d3a605989e3856551748aea7ad1e1c5e2.zip
Update Package Creation Tutorial for PEARC19 (#12209)
* Update Package Creation Tutorial for PEARC19 * A few remaining fixes * Fix section link
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/mpileaks/package.py35
1 files changed, 23 insertions, 12 deletions
diff --git a/var/spack/repos/builtin/packages/mpileaks/package.py b/var/spack/repos/builtin/packages/mpileaks/package.py
index 83aa3f5ad3..b4dfd551f8 100644
--- a/var/spack/repos/builtin/packages/mpileaks/package.py
+++ b/var/spack/repos/builtin/packages/mpileaks/package.py
@@ -7,22 +7,33 @@ from spack import *
class Mpileaks(AutotoolsPackage):
- """Tool to detect and report leaked MPI objects like MPI_Requests and
- MPI_Datatypes."""
+ """Tool to detect and report MPI objects like MPI_Requests and
+ MPI_Datatypes."""
- homepage = "https://github.com/hpc/mpileaks"
- url = "https://github.com/hpc/mpileaks/releases/download/v1.0/mpileaks-1.0.tar.gz"
+ homepage = "https://github.com/LLNL/mpileaks"
+ url = "https://github.com/LLNL/mpileaks/releases/download/v1.0/mpileaks-1.0.tar.gz"
- version('1.0', '8838c574b39202a57d7c2d68692718aa')
+ version('1.0', sha256='2e34cc4505556d1c1f085758e26f2f8eea0972db9382f051b2dcfb1d7d9e1825')
- depends_on("mpi")
- depends_on("adept-utils")
- depends_on("callpath")
+ variant('stackstart', values=int, default=0,
+ description='Specify the number of stack frames to truncate')
- def configure_args(self):
- args = []
+ depends_on('mpi')
+ depends_on('adept-utils')
+ depends_on('callpath')
- args.append("--with-adept-utils=%s" % self.spec['adept-utils'].prefix)
- args.append("--with-callpath=%s" % self.spec['callpath'].prefix)
+ def configure_args(self):
+ stackstart = int(self.spec.variants['stackstart'].value)
+
+ args = [
+ '--with-adept-utils={0}'.format(self.spec['adept-utils'].prefix),
+ '--with-callpath={0}'.format(self.spec['callpath'].prefix),
+ ]
+
+ if stackstart:
+ args.extend([
+ '--with-stack-start-c={0}'.format(stackstart),
+ '--with-stack-start-fortran={0}'.format(stackstart)
+ ])
return args