Fix Scalasca build error: (#5004)

Build system "usually" autodetects mpi library but this is
    not the case on many platforms. Provide mpi library name/version
    as part for configure args.
This commit is contained in:
Pramod S Kumbhar 2017-08-07 21:56:47 +02:00 committed by Adam J. Stewart
parent f2871c7529
commit 82463f1fd6

View file

@ -63,4 +63,9 @@ def configure_args(self):
config_args.append("--with-cube=%s" % spec['cube'].prefix.bin)
config_args.append("--with-otf2=%s" % spec['otf2'].prefix.bin)
if self.spec['mpi'].name == 'openmpi':
config_args.append("--with-mpi=openmpi")
elif self.spec.satisfies('^mpich@3:'):
config_args.append("--with-mpi=mpich3")
return config_args