Skip to content
Snippets Groups Projects
Commit ffc427aa authored by Pietro Incardona's avatar Pietro Incardona
Browse files

Fixing MPICH on OSX

parent 43d2d30b
No related branches found
No related tags found
No related merge requests found
Pipeline #3602 failed
......@@ -28,10 +28,10 @@ cd mpich-3.4.2
if [ x"$6" == x"1" ]; then
echo "Installing MPI with GPU support"
./configure --prefix=$1/MPI --enable-fortran CC=$3 CXX=$4 F77=$5 FC=$5
./configure --prefix=$1/MPI --enable-fortran CC=$3 CXX=$4 F77=$5 FC=$5 FFLAGS=-fallow-argument-mismatch
else
echo "Installing MPI without GPU support"
./configure --prefix=$1/MPI --enable-fortran CC=$3 CXX=$4 F77=$5 FC=$5
./configure --prefix=$1/MPI --enable-fortran CC=$3 CXX=$4 F77=$5 FC=$5 FFLAGS=-fallow-argument-mismatch
fi
make -j $2
make install
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment