mirror of
https://github.com/cp2k/cp2k.git
synced 2026-07-28 22:25:32 -04:00
Print more variable settings during Intel toolchain build
This commit is contained in:
parent
828a98d725
commit
4bf25d8fce
2 changed files with 8 additions and 0 deletions
|
|
@ -53,6 +53,9 @@ case "${with_intel}" in
|
|||
;;
|
||||
esac
|
||||
if [ "${with_intel}" != "__DONTUSE__" ]; then
|
||||
echo "CC is ${CC}"
|
||||
echo "CXX is ${CXX}"
|
||||
echo "FC is ${FC}"
|
||||
cat << EOF > "${BUILDDIR}/setup_intel"
|
||||
export CC="${CC}"
|
||||
export CXX="${CXX}"
|
||||
|
|
|
|||
|
|
@ -75,6 +75,11 @@ if [ "${with_intelmpi}" != "__DONTUSE__" ]; then
|
|||
I_MPI_CC="icc"
|
||||
I_MPI_FC="ifort"
|
||||
INTELMPI_LIBS="-lmpi -lmpicxx"
|
||||
echo "I_MPI_CC is ${I_MPI_CC}"
|
||||
echo "I_MPI_FC is ${I_MPI_FC}"
|
||||
echo "MPICC is ${MPICC}"
|
||||
echo "MPICXX is ${MPICXX}"
|
||||
echo "MPICXX is ${MPIFC}"
|
||||
cat << EOF > "${BUILDDIR}/setup_intelmpi"
|
||||
export I_MPI_CC="${I_MPI_CC}"
|
||||
export I_MPI_FC="${I_MPI_FC}"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue