You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Use external PMIx support, optionally adding DIR to the search path (default: no)])],
238
-
[], with_external_pmix=no)
235
+
AC_ARG_WITH([pmix],
236
+
[AC_HELP_STRING([--with-pmix(=DIR)],
237
+
[Build PMIx support. DIR can take one of three values: "internal", "external", or a valid directory name. "internal" (or no DIR value) forces Open MPI to use its internal copy of PMIx. "external" forces Open MPI to use an external installation of PMIx. Supplying a valid directory name also forces Open MPI to use an external installation of PMIx, and adds DIR/include, DIR/lib, and DIR/lib64 to the search path for headers and libraries. Note that Open MPI does not support --without-pmix.])])
239
238
240
-
AC_MSG_CHECKING([if user requested PMIx support])
241
-
AS_IF([test "$with_external_pmix" = "no"],
239
+
AS_IF([test "$with_pmix" = "no"],
240
+
[AC_MSG_WARN([Open MPI requires PMIx support. It can be built])
241
+
AC_MSG_WARN([with either its own internal copy of PMIx, or with])
242
+
AC_MSG_WARN([an external copy that you supply.])
243
+
AC_MSG_ERROR([Cannot continue])])
244
+
245
+
AC_MSG_CHECKING([if user requested PMIx support($with_pmix)])
246
+
AS_IF([test -z "$with_pmix" || test "$with_pmix" = "yes" || test "$with_mpix" = "internal"],
242
247
[AC_MSG_RESULT([no])
243
248
opal_external_pmix_happy="no"],
244
249
[AC_MSG_RESULT([yes])
245
250
# check for external pmix lib */
246
-
AS_IF([test "$with_external_pmix" == "yes" || test -z "$with_external_pmix"],
0 commit comments