
Rename the pmix1xx component to pmix111 so it reflects the actual release it includes Resolve the problem of PMIx being passed a bogus --with-platform argument when configuring the PMIx tarball code. There is no reason we should be passing --with-platform arguments to any internal subdirectory, so just leave that out when constructing the opal_subdir_args variable. Update the PMIx code and continue attempting to debug direct modex Fix a problem in the ORTE PMIx server - there was an early intent to optimize the direct modex by fetching data for all procs from the target job on the remote node, instead of fetching the data one proc at a time. However, this was never completely implemented, and so we would hang if we had multiple overlapping requests for data from more than one proc on the node. Update PMIx to v1.1.2
52 строки
1.6 KiB
Makefile
52 строки
1.6 KiB
Makefile
#
|
|
# Copyright (c) 2014-2015 Intel, Inc. All rights reserved.
|
|
# Copyright (c) 2015 Cisco Systems, Inc. All rights reserved.
|
|
# Copyright (c) 2015 Research Organization for Information Science
|
|
# and Technology (RIST). All rights reserved.
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
EXTRA_DIST = autogen.subdirs
|
|
|
|
SUBDIRS = pmix
|
|
|
|
sources = \
|
|
pmix1.h \
|
|
pmix_pmix1_component.c \
|
|
pmix_pmix1.c \
|
|
pmix1_client.c \
|
|
pmix1_server_south.c \
|
|
pmix1_server_north.c
|
|
|
|
# Make the output library in this directory, and name it either
|
|
# mca_<type>_<name>.la (for DSO builds) or libmca_<type>_<name>.la
|
|
# (for static builds).
|
|
|
|
if MCA_BUILD_opal_pmix_pmix112_DSO
|
|
component_noinst =
|
|
component_install = mca_pmix_pmix112.la
|
|
else
|
|
component_noinst = libmca_pmix_pmix112.la
|
|
component_install =
|
|
endif
|
|
|
|
mcacomponentdir = $(opallibdir)
|
|
mcacomponent_LTLIBRARIES = $(component_install)
|
|
mca_pmix_pmix112_la_SOURCES = $(sources)
|
|
mca_pmix_pmix112_la_CFLAGS = $(opal_pmix_pmix112_CFLAGS)
|
|
mca_pmix_pmix112_la_CPPFLAGS = \
|
|
-I$(srcdir)/pmix/include $(opal_pmix_pmix112_CPPFLAGS)
|
|
mca_pmix_pmix112_la_LDFLAGS = -module -avoid-version $(opal_pmix_pmix112_LDFLAGS)
|
|
mca_pmix_pmix112_la_LIBADD = $(opal_pmix_pmix112_LIBS)
|
|
|
|
noinst_LTLIBRARIES = $(component_noinst)
|
|
libmca_pmix_pmix112_la_SOURCES =$(sources)
|
|
libmca_pmix_pmix112_la_CFLAGS = $(opal_pmix_pmix112_CFLAGS)
|
|
libmca_pmix_pmix112_la_CPPFLAGS = -I$(srcdir)/pmix/include $(opal_pmix_pmix112_CPPFLAGS)
|
|
libmca_pmix_pmix112_la_LDFLAGS = -module -avoid-version $(opal_pmix_pmix112_LDFLAGS)
|
|
libmca_pmix_pmix112_la_LIBADD = $(opal_pmix_pmix112_LIBS)
|