https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 667587dec7fb5df66a8115836f0fa0b66814079b authored by KeitaYoshioka on 06 September 2021, 13:52:37 UTC
Merge branch 'PhaseField' into 'master'
Tip revision: 667587d
mpi.sh
if [ -n "$ZSH_VERSION" ]; then
    DIR=$( cd $(dirname "${(%):-%x}") ; pwd -P )
else
    DIR=$( cd $(dirname "${BASH_SOURCE[0]}") ; pwd -P )
fi

source $DIR/cli.sh
export CC=mpicc
export CXX=mpic++
back to top