update EOS build scripts to load newer gcc

git-svn-id: https://subversion.assembla.com/svn/qmcdev/trunk@7399 e5b18d87-469d-4833-9cc0-8cdfa06e9491
This commit is contained in:
Jaron Krogel 2017-01-06 22:20:48 +00:00
parent 17dc928708
commit 139c1184b0
2 changed files with 9 additions and 2 deletions

View File

@ -9,9 +9,9 @@
## ./config/build_olcf_eos.sh ##
## ##
## Settings should be consistent with test scripts e.g. ##
## ./tests/test_automation/night_ornl_olcf_eos.job ##
## ./tests/test_automation/nightly_ornl_olcf_eos.job ##
## ##
## Last modified: Aug 3, 2016 ##
## Last modified: Jan 6, 2017 ##
################################################################
@ -21,7 +21,12 @@ if (echo $LOADEDMODULES | grep -q pgi)
then
module unload PrgEnv-pgi
fi
if (echo $LOADEDMODULES | grep -q gnu)
then
module unload PrgEnv-gnu
fi
module load PrgEnv-intel
module load gcc
module load cray-hdf5
module load fftw
module load boost

View File

@ -57,6 +57,7 @@ echo --- Building for $sys `date`
case $sys in
"build_intel")
# Build with default Intel PrgEnv on eos. This is not checked!
module load gcc
module load cray-hdf5
module load cmake
module load fftw
@ -68,6 +69,7 @@ case $sys in
;;
"build_intel_complex")
# Build with default Intel PrgEnv on eos. This is not checked!
module load gcc
module load cray-hdf5
module load cmake
module load fftw