1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
#! /bin/sh
# Exit on error
set -ev
# Install packages
case "$CXX" in
g++)
export CC=/usr/bin/gcc-$GCC_VERSION
export CXX=/usr/bin/g++-$GCC_VERSION
;;
clang++)
export CC=/usr/bin/clang-3.7
export CXX=/usr/bin/clang++-3.7
export CXXFLAGS="-std=c++11"
;;
*)
echo "Unknown C++ compiler:"
echo "$CXX"
exit 1
;;
esac
# Print compiler information
$CC --version
$CXX --version
# log the CMake version (need 3+)
cmake --version
# Install MPICH
if [ ! -d "${HOME}/mpich" ]; then
wget --no-check-certificate -q http://www.mpich.org/static/downloads/3.2/mpich-3.2.tar.gz
tar -xzf mpich-3.2.tar.gz
cd mpich-3.2
./configure CC=$CC CXX=$CXX --disable-fortran --disable-romio --prefix=${HOME}/mpich
make -j2
make install
${HOME}/mpich/bin/mpichversion
${HOME}/mpich/bin/mpicc -show
${HOME}/mpich/bin/mpicxx -show
else
echo "MPICH installed..."
find ${HOME}/mpich -name mpiexec
find ${HOME}/mpich -name mpicc
find ${HOME}/mpich -name mpicxx
fi
|