From 014a07ed9cd91caf01984b727536fcba8697a13e Mon Sep 17 00:00:00 2001 From: Matthias Krack Date: Tue, 6 Jun 2023 10:19:45 +0200 Subject: [PATCH] Drop check for system mpiexec command Some systems do not provide mpiexec in order to enforce the use of srun --- tools/toolchain/scripts/stage1/install_mpich.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/tools/toolchain/scripts/stage1/install_mpich.sh b/tools/toolchain/scripts/stage1/install_mpich.sh index f3830b7276..d25f8d18bd 100755 --- a/tools/toolchain/scripts/stage1/install_mpich.sh +++ b/tools/toolchain/scripts/stage1/install_mpich.sh @@ -79,7 +79,6 @@ case "${with_mpich}" in ;; __SYSTEM__) echo "==================== Finding MPICH from system paths ====================" - check_command mpiexec "mpich" && MPIRUN="$(command -v mpiexec)" || exit 1 check_command mpicc "mpich" && MPICC="$(command -v mpicc)" || exit 1 if [ $(command -v mpic++ > /dev/null 2>&1) ]; then check_command mpic++ "mpich" && MPICXX="$(command -v mpic++)" || exit 1