Skip to content

Commit 8777539

Browse files
committed
build: Fix missing CUDA helper dependency
In 58cdac, I missed adding the libopal_cuda.la file in the libopen-pal dependency list (since we have an explicit dependency list for libopen-pal. This patch adds the dependency for the relink case. Signed-off-by: Brian Barrett <[email protected]>
1 parent 96f6184 commit 8777539

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

opal/Makefile.am

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,8 @@ lib@OPAL_LIB_NAME@_la_DEPENDENCIES = \
6666
datatype/libdatatype.la \
6767
mca/base/libmca_base.la \
6868
util/libopalutil.la \
69-
$(MCA_opal_FRAMEWORK_LIBS)
69+
$(MCA_opal_FRAMEWORK_LIBS) \
70+
$(LIBOPAL_CUDA_LA)
7071
lib@OPAL_LIB_NAME@_la_LDFLAGS = -version-info @libopen_pal_so_version@ \
7172
$(opal_libevent_LDFLAGS) \
7273
$(opal_hwloc_LDFLAGS) \

0 commit comments

Comments
 (0)