Skip to content
Snippets Groups Projects
Commit cbc914c8 authored by Peter W. Draper's avatar Peter W. Draper
Browse files

Don't stop when the mpirun command isn't available, this may not be fatal

parent 3b974424
No related branches found
No related tags found
No related merge requests found
...@@ -105,8 +105,9 @@ if test "$enable_mpi" = "yes"; then ...@@ -105,8 +105,9 @@ if test "$enable_mpi" = "yes"; then
AC_PATH_PROG([MPIRUN],[mpirun],[notfound]) AC_PATH_PROG([MPIRUN],[mpirun],[notfound])
fi fi
if test "$MPIRUN" = "notfound"; then 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]) AC_MSG_WARN([Cannot find mpirun command on PATH, thread support may not be correct])
enable_mpi="no"
else else
# Special options we know about. # Special options we know about.
# Intel: -mt_mpi # Intel: -mt_mpi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment