Make all the PMI components depend on the common pmi library and properly
install the common pmi library This commit was SVN r26588.
Этот коммит содержится в:
родитель
2812579246
Коммит
7406ef1241
@ -30,7 +30,8 @@ mcacomponentdir = $(pkglibdir)
|
|||||||
mcacomponent_LTLIBRARIES = $(component_install)
|
mcacomponent_LTLIBRARIES = $(component_install)
|
||||||
mca_pubsub_pmi_la_SOURCES = $(local_sources)
|
mca_pubsub_pmi_la_SOURCES = $(local_sources)
|
||||||
mca_pubsub_pmi_la_LDFLAGS = -module -avoid-version $(pubsub_pmi_LDFLAGS)
|
mca_pubsub_pmi_la_LDFLAGS = -module -avoid-version $(pubsub_pmi_LDFLAGS)
|
||||||
mca_pubsub_pmi_la_LIBADD = $(pubsub_pmi_LIBS)
|
mca_pubsub_pmi_la_LIBADD = $(pubsub_pmi_LIBS) \
|
||||||
|
$(top_ompi_builddir)/orte/mca/common/pmi/libmca_common_pmi.la
|
||||||
|
|
||||||
noinst_LTLIBRARIES = $(component_noinst)
|
noinst_LTLIBRARIES = $(component_noinst)
|
||||||
libmca_pubsub_pmi_la_SOURCES = $(local_sources)
|
libmca_pubsub_pmi_la_SOURCES = $(local_sources)
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
#
|
#
|
||||||
# Copyright (c) 2011 Cisco Systems, Inc. All rights reserved.
|
# Copyright (c) 2011 Cisco Systems, Inc. All rights reserved.
|
||||||
|
# Copyright (c) 2012 Sandia National Laboratories. All rights reserved.
|
||||||
# $COPYRIGHT$
|
# $COPYRIGHT$
|
||||||
#
|
#
|
||||||
# Additional copyrights may follow
|
# Additional copyrights may follow
|
||||||
@ -7,29 +8,32 @@
|
|||||||
# $HEADER$
|
# $HEADER$
|
||||||
#
|
#
|
||||||
|
|
||||||
|
# This library is shared among all the consumers of PMI to provide a
|
||||||
|
# single point for initializing and shutting down PMI.
|
||||||
|
#
|
||||||
|
# This is not a component in the traditional sense. It is a library
|
||||||
|
# (either rolled into libmpi if the components are rolled into libmpi
|
||||||
|
# or a stand-alone library). Users of this "component" must
|
||||||
|
# explicitly link against libmca_common_pmi.la when building
|
||||||
|
# stand-alone libraries (it won't hurt to do so in all cases).
|
||||||
|
#
|
||||||
|
# Note that building this common component statically and linking
|
||||||
|
# against other dynamic components is *not* supported!
|
||||||
|
|
||||||
AM_CPPFLAGS = $(common_pmi_CPPFLAGS)
|
AM_CPPFLAGS = $(common_pmi_CPPFLAGS)
|
||||||
|
|
||||||
sources = common_pmi.h common_pmi.c
|
# control whether building an installed library or a convenience
|
||||||
|
# (noinst) library
|
||||||
# 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_orte_common_pmi_DSO
|
if MCA_BUILD_orte_common_pmi_DSO
|
||||||
component_noinst =
|
component_noinst =
|
||||||
component_install = mca_common_pmi.la
|
component_install = libmca_common_pmi.la
|
||||||
else
|
else
|
||||||
component_noinst = libmca_common_pmi.la
|
component_noinst = libmca_common_pmi.la
|
||||||
component_install =
|
component_install =
|
||||||
endif
|
endif
|
||||||
|
|
||||||
mcacomponentdir = $(pkglibdir)
|
lib_LTLIBRARIES = $(component_install)
|
||||||
mcacomponent_LTLIBRARIES = $(component_install)
|
|
||||||
mca_common_pmi_la_SOURCES = $(sources)
|
|
||||||
mca_common_pmi_la_LDFLAGS = -module -avoid-version $(common_pmi_LDFLAGS)
|
|
||||||
mca_common_pmi_la_LIBADD = $(common_pmi_LIBS)
|
|
||||||
|
|
||||||
noinst_LTLIBRARIES = $(component_noinst)
|
noinst_LTLIBRARIES = $(component_noinst)
|
||||||
libmca_common_pmi_la_SOURCES =$(sources)
|
libmca_common_pmi_la_SOURCES = common_pmi.h common_pmi.c
|
||||||
libmca_common_pmi_la_LDFLAGS = -module -avoid-version $(common_pmi_LDFLAGS)
|
libmca_common_pmi_la_LDFLAGS = -module -avoid-version $(common_pmi_LDFLAGS)
|
||||||
libmca_common_pmi_la_LIBADD = $(common_pmi_LIBS)
|
libmca_common_pmi_la_LIBADD = $(common_pmi_LIBS)
|
||||||
|
@ -30,7 +30,8 @@ mcacomponentdir = $(pkglibdir)
|
|||||||
mcacomponent_LTLIBRARIES = $(component_install)
|
mcacomponent_LTLIBRARIES = $(component_install)
|
||||||
mca_ess_pmi_la_SOURCES = $(sources)
|
mca_ess_pmi_la_SOURCES = $(sources)
|
||||||
mca_ess_pmi_la_LDFLAGS = -module -avoid-version $(ess_pmi_LDFLAGS)
|
mca_ess_pmi_la_LDFLAGS = -module -avoid-version $(ess_pmi_LDFLAGS)
|
||||||
mca_ess_pmi_la_LIBADD = $(ess_pmi_LIBS)
|
mca_ess_pmi_la_LIBADD = $(ess_pmi_LIBS) \
|
||||||
|
$(top_ompi_builddir)/orte/mca/common/pmi/libmca_common_pmi.la
|
||||||
|
|
||||||
noinst_LTLIBRARIES = $(component_noinst)
|
noinst_LTLIBRARIES = $(component_noinst)
|
||||||
libmca_ess_pmi_la_SOURCES =$(sources)
|
libmca_ess_pmi_la_SOURCES =$(sources)
|
||||||
|
@ -30,7 +30,8 @@ mcacomponentdir = $(pkglibdir)
|
|||||||
mcacomponent_LTLIBRARIES = $(component_install)
|
mcacomponent_LTLIBRARIES = $(component_install)
|
||||||
mca_grpcomm_pmi_la_SOURCES = $(sources)
|
mca_grpcomm_pmi_la_SOURCES = $(sources)
|
||||||
mca_grpcomm_pmi_la_LDFLAGS = -module -avoid-version $(grpcomm_pmi_LDFLAGS)
|
mca_grpcomm_pmi_la_LDFLAGS = -module -avoid-version $(grpcomm_pmi_LDFLAGS)
|
||||||
mca_grpcomm_pmi_la_LIBADD = $(grpcomm_pmi_LIBS)
|
mca_grpcomm_pmi_la_LIBADD = $(grpcomm_pmi_LIBS) \
|
||||||
|
$(top_ompi_builddir)/orte/mca/common/pmi/libmca_common_pmi.la
|
||||||
|
|
||||||
noinst_LTLIBRARIES = $(component_noinst)
|
noinst_LTLIBRARIES = $(component_noinst)
|
||||||
libmca_grpcomm_pmi_la_SOURCES =$(sources)
|
libmca_grpcomm_pmi_la_SOURCES =$(sources)
|
||||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user