https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: a20801c1beb18af14215dc8ef6182d268e258582 authored by Lars Bilke on 04 August 2021, 09:37:10 UTC
Merge branch 'ci-clang-format-job' into 'master'
Tip revision: a20801c
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