Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Spack
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
eic_tools
Spack
Commits
1827b4c5
Commit
1827b4c5
authored
Jun 21, 2019
by
Toyohisa Kameyama
Committed by
Elizabeth Fischer
Jun 21, 2019
Browse files
Options
Downloads
Patches
Plain Diff
mpileaks: use autotools. (#11808)
parent
9955b15f
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
var/spack/repos/builtin/packages/mpileaks/package.py
+8
-7
8 additions, 7 deletions
var/spack/repos/builtin/packages/mpileaks/package.py
with
8 additions
and
7 deletions
var/spack/repos/builtin/packages/mpileaks/package.py
+
8
−
7
View file @
1827b4c5
...
@@ -6,7 +6,7 @@
...
@@ -6,7 +6,7 @@
from
spack
import
*
from
spack
import
*
class
Mpileaks
(
Package
):
class
Mpileaks
(
Autotools
Package
):
"""
Tool to detect and report leaked MPI objects like MPI_Requests and
"""
Tool to detect and report leaked MPI objects like MPI_Requests and
MPI_Datatypes.
"""
MPI_Datatypes.
"""
...
@@ -19,9 +19,10 @@ class Mpileaks(Package):
...
@@ -19,9 +19,10 @@ class Mpileaks(Package):
depends_on
(
"
adept-utils
"
)
depends_on
(
"
adept-utils
"
)
depends_on
(
"
callpath
"
)
depends_on
(
"
callpath
"
)
def
install
(
self
,
spec
,
prefix
):
def
configure_args
(
self
):
configure
(
"
--prefix=
"
+
prefix
,
args
=
[]
"
--with-adept-utils=
"
+
spec
[
'
adept-utils
'
].
prefix
,
"
--with-callpath=
"
+
spec
[
'
callpath
'
].
prefix
)
args
.
append
(
"
--with-adept-utils=%s
"
%
self
.
spec
[
'
adept-utils
'
].
prefix
)
make
()
args
.
append
(
"
--with-callpath=%s
"
%
self
.
spec
[
'
callpath
'
].
prefix
)
make
(
"
install
"
)
return
args
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment