This is taken from commit #dd7cf94ecdb1c1368fed2458c4f45bd95e1a140c from ODU container repo. No changes were made at all.master
parent
b97592a8c7
commit
8cf081b4b1
1 changed files with 32 additions and 0 deletions
@ -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 |
Loading…
Reference in new issue