c4035d848f
I promoted the ''none'' component to a full component, and updated the other components to reflect this code movement. The ''none'' component is the default component unless the user requests '''-am ft-enable-cr''' to auto-select a component. There is an MCA parameter to show a warning if the application requested an FT enabled job, but the ''none'' component was selected ({{{crs_none_select_warning}}}). This temporarily fixes the problem mentioned in r18739. The full fix will entail working on ticket #1291. Thanks to Ethan from Sun for finding this bug. This commit was SVN r18840. The following SVN revision numbers were found above: r18739 --> open-mpi/ompi@a003fa7a50
41 строка
954 B
Makefile
41 строка
954 B
Makefile
#
|
|
# Copyright (c) 2004-2008 The Trustees of Indiana University.
|
|
# All rights reserved.
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
AM_CPPFLAGS = \
|
|
$(LTDLINCL)
|
|
|
|
dist_pkgdata_DATA = help-opal-crs-none.txt
|
|
|
|
sources = \
|
|
crs_none.h \
|
|
crs_none_component.c \
|
|
crs_none_module.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_crs_none_DSO
|
|
component_noinst =
|
|
component_install = mca_crs_none.la
|
|
else
|
|
component_noinst = libmca_crs_none.la
|
|
component_install =
|
|
endif
|
|
|
|
mcacomponentdir = $(pkglibdir)
|
|
mcacomponent_LTLIBRARIES = $(component_install)
|
|
mca_crs_none_la_SOURCES = $(sources)
|
|
mca_crs_none_la_LDFLAGS = -module -avoid-version
|
|
|
|
noinst_LTLIBRARIES = $(component_noinst)
|
|
libmca_crs_none_la_SOURCES = $(sources)
|
|
libmca_crs_none_la_LDFLAGS = -module -avoid-version
|