
When Slurm is built against PMIx, some installations place a copy of the PMIx library that Slurm is linking against in the Slurm PMI location. Current configury ignores that location. The desired behavior is to look for a PMIx lib in that location when --with-pmi is given. If the user also specifies --with-pmix and gives a different location, then override anything previously found and look for it where the user directed. Signed-off-by: Ralph Castain <rhc@pmix.org> (cherry picked from commit cd1b5641beca7f158360983cd31f7297548b0a3c)
27 строки
731 B
Bash
27 строки
731 B
Bash
# -*- shell-script -*-
|
|
#
|
|
# Copyright (c) 2014-2019 Intel, Inc. All rights reserved.
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
# MCA_pmix_s1_CONFIG([action-if-found], [action-if-not-found])
|
|
# -----------------------------------------------------------
|
|
AC_DEFUN([MCA_opal_pmix_s1_CONFIG], [
|
|
AC_CONFIG_FILES([opal/mca/pmix/s1/Makefile])
|
|
|
|
AC_REQUIRE([OPAL_CHECK_UGNI])
|
|
|
|
# Evaluate succeed / fail
|
|
AS_IF([test "$opal_enable_pmi1" = "yes" && test "$opal_check_ugni_happy" = "no"],
|
|
[$1
|
|
# need to set the wrapper flags for static builds
|
|
pmix_s1_WRAPPER_EXTRA_LDFLAGS="$opal_pmi1_LDFLAGS"
|
|
pmix_s1_WRAPPER_EXTRA_LIBS="$opal_pmi1_LIBS"],
|
|
[$2])
|
|
|
|
])
|