e1d079544b
* Resolves #3705 * Components should link against the project level library to better support `dlopen` with `RTLD_LOCAL`. * Extend the `mca_FRAMEWORK_COMPONENT_la_LIBADD` in the `Makefile.am` with the appropriate project level library: ``` MCA components in ompi/ $(top_builddir)/ompi/lib@OMPI_LIBMPI_NAME@.la MCA components in orte/ $(top_builddir)/orte/lib@ORTE_LIB_PREFIX@open-rte.la MCA components in opal/ $(top_builddir)/opal/lib@OPAL_LIB_PREFIX@open-pal.la MCA components in oshmem/ $(top_builddir)/oshmem/liboshmem.la" ``` Note: The changes in this commit were automated by the script in the commit that proceeds it with the `libadd_mca_comp_update.py` script. Some components were not included in this change because they are statically built only. Signed-off-by: Joshua Hursey <jhursey@us.ibm.com>
64 строки
2.3 KiB
Makefile
64 строки
2.3 KiB
Makefile
#
|
|
# Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
# University Research and Technology
|
|
# Corporation. All rights reserved.
|
|
# Copyright (c) 2004-2009 The University of Tennessee and The University
|
|
# of Tennessee Research Foundation. All rights
|
|
# reserved.
|
|
# Copyright (c) 2004-2009 High Performance Computing Center Stuttgart,
|
|
# University of Stuttgart. All rights reserved.
|
|
# Copyright (c) 2004-2005 The Regents of the University of California.
|
|
# All rights reserved.
|
|
# Copyright (c) 2009-2014 Cisco Systems, Inc. All rights reserved.
|
|
# Copyright (c) 2012 NVIDIA Corporation. All rights reserved.
|
|
# Copyright (c) 2017 IBM Corporation. All rights reserved.
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
dist_opaldata_DATA = help-mpi-btl-smcuda.txt
|
|
|
|
libmca_btl_smcuda_la_sources = \
|
|
btl_smcuda.c \
|
|
btl_smcuda.h \
|
|
btl_smcuda_component.c \
|
|
btl_smcuda_endpoint.h \
|
|
btl_smcuda_fifo.h \
|
|
btl_smcuda_frag.c \
|
|
btl_smcuda_frag.h
|
|
|
|
# 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_btl_smcuda_DSO
|
|
component_noinst =
|
|
component_install = mca_btl_smcuda.la
|
|
else
|
|
component_noinst = libmca_btl_smcuda.la
|
|
component_install =
|
|
endif
|
|
|
|
# See opal/mca/common/cuda/Makefile.am for an explanation of
|
|
# libmca_common_sm.la.
|
|
|
|
mcacomponentdir = $(opallibdir)
|
|
mcacomponent_LTLIBRARIES = $(component_install)
|
|
mca_btl_smcuda_la_SOURCES = $(libmca_btl_smcuda_la_sources)
|
|
mca_btl_smcuda_la_LDFLAGS = -module -avoid-version
|
|
mca_btl_smcuda_la_LIBADD = $(top_builddir)/opal/lib@OPAL_LIB_PREFIX@open-pal.la \
|
|
$(OPAL_TOP_BUILDDIR)/opal/mca/common/sm/lib@OPAL_LIB_PREFIX@mca_common_sm.la
|
|
mca_btl_smcuda_la_CPPFLAGS = $(btl_smcuda_CPPFLAGS)
|
|
if OPAL_cuda_support
|
|
mca_btl_smcuda_la_LIBADD += \
|
|
$(OPAL_TOP_BUILDDIR)/opal/mca/common/cuda/lib@OPAL_LIB_PREFIX@mca_common_cuda.la
|
|
endif
|
|
|
|
noinst_LTLIBRARIES = $(component_noinst)
|
|
libmca_btl_smcuda_la_SOURCES = $(libmca_btl_smcuda_la_sources)
|
|
libmca_btl_smcuda_la_LDFLAGS = -module -avoid-version
|
|
libmca_btl_smcuda_la_CPPFLAGS = $(btl_smcuda_CPPFLAGS)
|