
With Open MPI 5.0, the decision was made to stop building 3rd-party packages, such as Libevent, HWLOC, PMIx, and PRRTE as MCA components and instead 1) start relying on external libraries whenever possible and 2) Open MPI builds the 3rd party libraries (if needed) as independent libraries, rather than linked into libopen-pal. This patch moves the PMIx library bundled with Open MPI from a MCA framework to a stand-alone library built outside of OPAL. Due to the amount of code in the MCA base (and its assumptions about being part of an MCA framework), the framework is left with no active components. Any pre-installed version of PMIx 3.0.0 or newer is preferred over the internal version. Signed-off-by: Brian Barrett <bbarrett@amazon.com>
30 строки
1.1 KiB
Bash
30 строки
1.1 KiB
Bash
dnl -*- shell-script -*-
|
|
dnl
|
|
dnl Copyright (c) 2010-2017 Cisco Systems, Inc. All rights reserved
|
|
dnl Copyright (c) 2019 Intel, Inc. All rights reserved.
|
|
dnl Copyright (c) 2020 Amazon.com, Inc. or its affiliates. All Rights
|
|
dnl reserved.
|
|
dnl $COPYRIGHT$
|
|
dnl
|
|
dnl Additional copyrights may follow
|
|
dnl
|
|
dnl $HEADER$
|
|
dnl
|
|
|
|
#
|
|
# In days of old, pmix was packaged as multiple MCA components, and
|
|
# grew an extensive set of base code to support Open MPI's use of
|
|
# pmix. When internal builds of libevent, hwloc, and pmix were moved
|
|
# out of components into base code so that they could be shared
|
|
# between Open MPI and PRRTE without incurring linking hell, we left
|
|
# the base code active. This MCA framework is essentially defunct;
|
|
# its only purpose is to allow continued use of the base code.
|
|
#
|
|
# We do not expect to find any components, nor do we allow any to be
|
|
# configured. The top-level configure will set all the flags in all
|
|
# the right places needed to link pmix.
|
|
#
|
|
AC_DEFUN([MCA_opal_pmix_CONFIG],[
|
|
AC_CONFIG_FILES([$1/mca/$2/Makefile])
|
|
])
|