2019-01-01 14:04:23 +08:00
|
|
|
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2016-10-04 16:30:52 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2016-10-04 16:30:52 +08:00
|
|
|
from spack import *
|
|
|
|
import os
|
|
|
|
|
|
|
|
|
2017-01-19 02:34:09 +08:00
|
|
|
class Mpip(AutotoolsPackage):
|
2016-10-04 16:30:52 +08:00
|
|
|
"""mpiP: Lightweight, Scalable MPI Profiling"""
|
|
|
|
homepage = "http://mpip.sourceforge.net/"
|
|
|
|
url = "http://downloads.sourceforge.net/project/mpip/mpiP/mpiP-3.4.1/mpiP-3.4.1.tar.gz"
|
|
|
|
|
2019-10-11 13:44:41 +08:00
|
|
|
version("3.4.1", sha256="688bf37d73211e6a915f9fc59c358282a266d166c0a10af07a38a01a473296f0")
|
2016-10-04 16:30:52 +08:00
|
|
|
|
2019-03-06 03:59:47 +08:00
|
|
|
depends_on("elf")
|
2017-08-08 05:38:53 +08:00
|
|
|
depends_on("libdwarf")
|
|
|
|
depends_on('libunwind', when=os.uname()[4] == "x86_64")
|
|
|
|
depends_on("mpi")
|
2016-10-04 16:30:52 +08:00
|
|
|
|
2017-01-19 02:34:09 +08:00
|
|
|
def configure_args(self):
|
2017-08-08 05:38:53 +08:00
|
|
|
config_args = ['--without-f77']
|
|
|
|
config_args.append("--with-cc=%s" % self.spec['mpi'].mpicc)
|
|
|
|
config_args.append("--with-cxx=%s" % self.spec['mpi'].mpicxx)
|
|
|
|
|
|
|
|
return config_args
|