Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions config/ompi_check_ucx.m4
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ AC_DEFUN([OMPI_CHECK_UCX],[
[$ompi_check_ucx_libdir],
[ompi_check_ucx_happy="yes"],
[ompi_check_ucx_happy="no"])

CPPFLAGS="$ompi_check_ucx_$1_save_CPPFLAGS"
LDFLAGS="$ompi_check_ucx_$1_save_LDFLAGS"
LIBS="$ompi_check_ucx_$1_save_LIBS"
Expand Down
69 changes: 69 additions & 0 deletions opal/mca/btl/uct/Makefile.am
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
#
# Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
# University Research and Technology
# Corporation. All rights reserved.
# Copyright (c) 2004-2005 The University of Tennessee and The University
# of Tennessee Research Foundation. All rights
# reserved.
# Copyright (c) 2004-2005 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) 2010 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2017 IBM Corporation. All rights reserved.
# Copyright (c) 2017-2018 Los Alamos National Security, LLC. All rights
# reserved.
# $COPYRIGHT$
#
# Additional copyrights may follow
#
# $HEADER$
#

AM_CPPFLAGS = $(btl_uct_CPPFLAGS)

amca_paramdir = $(AMCA_PARAM_SETS_DIR)

sources = \
btl_uct.h \
btl_uct_module.c \
btl_uct_component.c \
btl_uct_rdma.h \
btl_uct_rdma.c \
btl_uct_endpoint.h \
btl_uct_endpoint.c \
btl_uct_amo.c \
btl_uct_am.h \
btl_uct_am.c \
btl_uct_frag.h \
btl_uct_frag.c \
btl_uct_tl.c \
btl_uct_types.h \
btl_uct_device_context.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_uct_DSO
lib =
lib_sources =
component = mca_btl_uct.la
component_sources = $(sources)
else
lib = libmca_btl_uct.la
lib_sources = $(sources)
component =
component_sources =
endif

mcacomponentdir = $(opallibdir)
mcacomponent_LTLIBRARIES = $(component)
mca_btl_uct_la_SOURCES = $(component_sources)
mca_btl_uct_la_LDFLAGS = -module -avoid-version $(btl_uct_LDFLAGS)
mca_btl_uct_la_LIBADD = $(top_builddir)/opal/lib@[email protected] $(btl_uct_LIBS)

noinst_LTLIBRARIES = $(lib)
libmca_btl_uct_la_SOURCES = $(lib_sources)
libmca_btl_uct_la_LDFLAGS = -module -avoid-version $(btl_uct_LDFLAGS)
libmca_btl_uct_la_LIBADD = $(btl_uct_LIBS)
Loading