* Copied armci-mpi build script from ODU container repo.

This is taken from commit #dd7cf94ecdb1c1368fed2458c4f45bd95e1a140c
   from ODU container repo. No changes were made at all.
This commit is contained in:
Wirawan Purwanto
2021-04-14 12:01:31 -04:00
parent b97592a8c7
commit 8cf081b4b1

View File

@@ -0,0 +1,32 @@
#!/bin/bash
source /etc/container_runtime/buildtime
load_conda
export CC=x86_64-conda_cos6-linux-gnu-gcc
export CXX=x86_64-conda_cos6-linux-gnu-g++
export FC=x86_64-conda_cos6-linux-gnu-gfortran
load_mpich
export CC=mpicc
export CXX=mpicxx
export FC=mpifort
export MPICC=mpicc
export MPICXX=mpicxx
export MPIFC=mpifort
ARMCI_MPI_ROOT=/opt/armci-mpi
echo PATH=$PATH
[ -d $ARMCI_MPI_ROOT ] || git clone https://github.com/pmodels/armci-mpi $ARMCI_MPI_ROOT
cd $ARMCI_MPI_ROOT
autoreconf -i
./configure CC=mpicc --enable-g --prefix=$ARMCI_MPI_ROOT
make
make check
make install