From 85d0e49a60e4075b8af233f17a71dc70a408a570 Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Mon, 14 Jul 2014 18:07:00 +0200 Subject: [PATCH] OPAL.build: build with gcc/4.7 only --- scripts/OPAL.build | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/OPAL.build b/scripts/OPAL.build index d8c7526..634d521 100755 --- a/scripts/OPAL.build +++ b/scripts/OPAL.build @@ -3,16 +3,17 @@ source "$(dirname $0)/../lib/libem.bash" function em.configure() { - cmake \ + CC=$MPICC CXX=$MPICXX cmake \ -DCMAKE_INSTALL_PREFIX="${PREFIX}" \ -DCMAKE_BUILD_TYPE=RELEASE \ - -DENABLE_ML_SOLVER=TRUE \ + -DENABLE_SAAMG_SOLVER=TRUE \ "${EM_SRCDIR}" } em.add_to_family 'Tools' em.set_runtime_dependencies "${COMPILER}" "${MPI}" em.set_build_dependencies 'cmake' "${COMPILER}" "${MPI}" 'hdf5' 'H5hut' 'trilinos' 'ippl' 'gsl' +em.set_supported_compilers 'gcc/4.7' em.make_all