Skip to content

Commit 8f9ce8c

Browse files
committed
fix mpiicpx&mpiicx link error
1 parent d1b34c4 commit 8f9ce8c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

toolchain/scripts/stage1/install_intelmpi.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ case "${with_intelmpi}" in
4242
check_command mpiicpc "intelmpi" && MPICXX="$(realpath $(command -v mpiicpc))" || exit 1
4343
check_command mpiifort "intelmpi" && MPIFC="$(realpath $(command -v mpiifort))" || exit 1
4444
else
45-
check_command mpiicx "intelmpi" && MPICC="$(realpath $(command -v mpiicc))" || exit 1
46-
check_command mpiicpx "intelmpi" && MPICXX="$(realpath $(command -v mpiicpc))" || exit 1
45+
check_command mpiicx "intelmpi" && MPICC="$(realpath $(command -v mpiicx))" || exit 1
46+
check_command mpiicpx "intelmpi" && MPICXX="$(realpath $(command -v mpiicpx))" || exit 1
4747
if [ "${with_ifx}" == "yes" ]; then
4848
check_command mpiifx "intelmpi" && MPIFC="$(realpath $(command -v mpiifx))" || exit 1
4949
else

0 commit comments

Comments
 (0)