# Add additional packages, if present
if [ ! -z "${ARPACK_DIR}" ]; then
+ cecho ${INFO} "deal.II: configuration with ARPACK"
CONFOPTS="\
${CONFOPTS} \
-D DEAL_II_WITH_ARPACK:BOOL=ON \
fi
if [ ! -z "${METIS_DIR}" ]; then
+ cecho ${INFO} "deal.II: configuration with METIS"
CONFOPTS="\
${CONFOPTS} \
-D DEAL_II_WITH_METIS:BOOL=ON \
fi
if [ ! -z "${MUMPS_DIR}" ]; then
+ cecho ${INFO} "deal.II: configuration with MUMPS"
CONFOPTS="\
${CONFOPTS} \
-D MUMPS_DIR=${MUMPS_DIR}"
fi
if [ ! -z "${P4EST_DIR}" ]; then
+ cecho ${INFO} "deal.II: configuration with P4EST"
CONFOPTS="\
${CONFOPTS} \
-D DEAL_II_WITH_P4EST:BOOL=ON \
fi
if [ ! -z "${HDF5_DIR}" ]; then
+ cecho ${INFO} "deal.II: configuration with HDF5"
CONFOPTS="\
${CONFOPTS} \
-D DEAL_II_WITH_HDF5:BOOL=ON \
fi
if [ ! -z "${TRILINOS_DIR}" ]; then
+ cecho ${INFO} "deal.II: configuration with TRILINOS"
CONFOPTS="\
${CONFOPTS} \
-D DEAL_II_WITH_TRILINOS:BOOL=ON \
fi
if [ ! -z "${PETSC_DIR}" ]; then
+ cecho ${INFO} "deal.II: configuration with PETSC"
CONFOPTS="\
${CONFOPTS} \
-D DEAL_II_WITH_PETSC:BOOL=ON \
fi
if [ ! -z "${SLEPC_DIR}" ]; then
+ cecho ${INFO} "deal.II: configuration with SLEPC"
CONFOPTS="\
${CONFOPTS} \
-D DEAL_II_WITH_SLEPC:BOOL=ON \
fi
if [ ! -z "${OPENCASCADE_DIR}" ]; then
+ cecho ${INFO} "deal.II: configuration with OPENCASCADE"
CONFOPTS="\
${CONFOPTS} \
-D DEAL_II_WITH_OPENCASCADE:BOOL=ON"
fi
+read
################################################################################
################################################################################
# Set blas and lapack directories
if [ ! -z "${BLAS_DIR}" ]; then
+ cecho ${INFO} "trilinos: configuration with BLAS_DIR=${BLAS_DIR}"
CONFOPTS="\
${CONFOPTS} \
-D BLAS_LIBRARY_DIRS:STRING=${BLAS_DIR}"
fi
if [ ! -z "${LAPACK_DIR}" ]; then
+ cecho ${INFO} "trilinos: configuration with LAPACK_DIR=${LAPACK_DIR}"
CONFOPTS="
${CONFOPTS} \
-D LAPACK_LIBRARY_DIRS:STRING=${LAPACK_DIR}"
# Set intel MKL options
if [ ${MKL} = "ON" ]; then
- if [ -z "${BLAS_DIR}" ] && [ -z "${LAPACK_DIR}" ]; then
+ cecho ${INFO} "trilinos: configuration with MKL"
+ if [ -z "${BLAS_DIR}" ] && [ -z "${LAPACK_DIR}" ]; then
+ cecho ${INFO} "trilinos: configuration with BLAS_DIR=${MKL_DIR}"
+ cecho ${INFO} "trilinos: configuration with LAPACK_DIR=${MKL_DIR}"
CONFOPTS=" \
${CONFOPTS} \
-D BLAS_LIBRARY_DIRS:STRING=${MKL_DIR} \
-D Trilinos_EXTRA_LINK_FLAGS:STRING=-lgfortran"
# Add ParMETIS, if present
-if [ ! -z "${PARMETIS_DIR}" ] && [ ! -z "${ParMETIS}" ] && [ ${ParMETIS} = "ON" ]; then
+if [ ! -z "${PARMETIS_DIR}" ] && [ ! -z "${ParMETIS}" ]; then
+ cecho ${INFO} "trilinos: configuration with ParMETIS"
CONFOPTS="\
${CONFOPTS} \
-D TPL_ENABLE_ParMETIS:BOOL=${ParMETIS} \
fi
# Add SuperLU_dist, if present
-if [ ! -z "${SUPERLU_DIR}" ] && [ ! -z "${SuperLUDist}" ] && [ ${SuperLUDist} = "ON" ]; then
+if [ ! -z "${SUPERLU_DIR}" ] && [ ! -z "${SuperLUDist}" ]; then
+ cecho ${INFO} "trilinos: configuration with SuperLU_dist"
CONFOPTS="\
${CONFOPTS} \
-D TPL_ENABLE_SuperLUDist:BOOL=${SuperLUDist} \