1
1
openmpi/orte/mca/errmgr/app/Makefile.am
Ralph Castain 4bd25f587c Begin handling the case of lost connections by having the OOB report it to the errmgr instead of the routed framework. Add an "app" component to t
he errmgr framework so that it can decide how to respond - which for now at least is just to check for lifeline and abort if so.

Add a new error constant to indicate that the error is "unrecoverable" so the oob can know it needs to abort.

This commit was SVN r23112.
2010-05-11 00:34:12 +00:00

37 строки
872 B
Makefile

#
# Copyright (c) 2010 Cisco Systems, Inc. All rights reserved.
# $COPYRIGHT$
#
# Additional copyrights may follow
#
# $HEADER$
#
EXTRA_DIST = .windows
sources = \
errmgr_app.h \
errmgr_app_component.c \
errmgr_app.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 OMPI_BUILD_errmgr_app_DSO
component_noinst =
component_install = mca_errmgr_app.la
else
component_noinst = libmca_errmgr_app.la
component_install =
endif
mcacomponentdir = $(pkglibdir)
mcacomponent_LTLIBRARIES = $(component_install)
mca_errmgr_app_la_SOURCES = $(sources)
mca_errmgr_app_la_LDFLAGS = -module -avoid-version
noinst_LTLIBRARIES = $(component_noinst)
libmca_errmgr_app_la_SOURCES =$(sources)
libmca_errmgr_app_la_LDFLAGS = -module -avoid-version