From cbc914c831f4e76b5aefc8c003d41e8fba124f5a Mon Sep 17 00:00:00 2001 From: "Peter W. Draper" <p.w.draper@durham.ac.uk> Date: Wed, 15 Mar 2017 16:35:17 +0000 Subject: [PATCH] Don't stop when the mpirun command isn't available, this may not be fatal --- configure.ac | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index c94f5c23b9..224b7f722f 100644 --- a/configure.ac +++ b/configure.ac @@ -105,8 +105,9 @@ if test "$enable_mpi" = "yes"; then AC_PATH_PROG([MPIRUN],[mpirun],[notfound]) fi if test "$MPIRUN" = "notfound"; then + # This may not be fatal (some systems do not allow mpirun on + # development nodes)., so push on. AC_MSG_WARN([Cannot find mpirun command on PATH, thread support may not be correct]) - enable_mpi="no" else # Special options we know about. # Intel: -mt_mpi -- GitLab