Merge pull request #182 from eschnett/hdf5-mpi
HDF5: Support non-MPICH MPI implementations
This commit is contained in:
commit
025566b494
1 changed files with 2 additions and 2 deletions
|
@ -25,8 +25,8 @@ def install(self, spec, prefix):
|
||||||
"--with-zlib=%s" % spec['zlib'].prefix,
|
"--with-zlib=%s" % spec['zlib'].prefix,
|
||||||
"--enable-parallel",
|
"--enable-parallel",
|
||||||
"--enable-shared",
|
"--enable-shared",
|
||||||
"CC=%s" % spec['mpich'].prefix.bin + "/mpicc",
|
"CC=%s" % spec['mpi'].prefix.bin + "/mpicc",
|
||||||
"CXX=%s" % spec['mpich'].prefix.bin + "/mpic++")
|
"CXX=%s" % spec['mpi'].prefix.bin + "/mpic++")
|
||||||
|
|
||||||
make()
|
make()
|
||||||
make("install")
|
make("install")
|
||||||
|
|
Loading…
Reference in a new issue