forked from flux-framework/flux-core
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request flux-framework#1580 from garlick/pmix_remap
libpmi: add ability to bootstrap Flux using pmix
- Loading branch information
Showing
22 changed files
with
1,303 additions
and
712 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# If configured "--with-pmix" locate libpmix.so. | ||
# It is a hard failure if pmix is requested but cannot be found. | ||
# The default is to build Flux without libpmix support. | ||
# | ||
AC_DEFUN([X_AC_PMIX], [ | ||
AC_ARG_WITH([pmix], | ||
AS_HELP_STRING([--with-pmix], [Enable Flux bootstrap with PMIx])) | ||
AS_IF([test "x$with_pmix" = "xyes"], [ | ||
X_AC_CHECK_COND_LIB(pmix, PMIx_Init) | ||
AS_VAR_IF([ac_cv_lib_pmix_PMIx_Init],[yes],,[ | ||
AC_MSG_ERROR([no suitable PMIX library found]) | ||
]) | ||
]) | ||
AM_CONDITIONAL([HAVE_LIBPMIX], [test "x$with_pmix" = "xyes"]) | ||
] | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.