
With Open MPI 5.0, the decision was made to stop building 3rd-party packages, such as Libevent, HWLOC, PMIx, and PRRTE as MCA components and instead 1) start relying on external libraries whenever possible and 2) Open MPI builds the 3rd party libraries (if needed) as independent libraries, rather than linked into libopen-pal. This patch moves libevent from an MCA framework to a stand-alone library built outside of OPAL. A wrapper in opal/util is provided to minimize the unnecessary changes in the rest of the code. When using the internal Libevent, it will be installed as a stand-alone libevent.a, instead of bundled in OPAL. Any pre-installed version of Libevent at or after 2.0.21 is preferred over the internal version. Signed-off-by: Brian Barrett <bbarrett@amazon.com>
140 строки
3.4 KiB
Makefile
140 строки
3.4 KiB
Makefile
#
|
|
# 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) 2007-2015 Cisco Systems, Inc. All rights reserved.
|
|
# Copyright (c) 2013 NVIDIA Corporation. All rights reserved.
|
|
# Copyright (c) 2013 Intel, Inc. All rights reserved
|
|
# Copyright (c) 2016 Los Alamos National Security, LLC. All rights
|
|
# reserved.
|
|
# Copyright (c) 2016 Research Organization for Information Science
|
|
# and Technology (RIST). All rights reserved.
|
|
# Copyright (c) 2016-2017 IBM Corporation. All rights reserved.
|
|
# Copyright (c) 2020 Amazon.com, Inc. or its affiliates.
|
|
# All Rights reserved.
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
SUBDIRS = keyval
|
|
|
|
dist_opaldata_DATA = help-opal-util.txt
|
|
|
|
AM_LFLAGS = -Popal_show_help_yy
|
|
LEX_OUTPUT_ROOT = lex.opal_show_help_yy
|
|
|
|
noinst_LTLIBRARIES = libopalutil.la
|
|
|
|
AM_CPPFLAGS = $(LTDLINCL)
|
|
|
|
# Source code files
|
|
|
|
headers = \
|
|
alfg.h \
|
|
arch.h \
|
|
argv.h \
|
|
basename.h \
|
|
bipartite_graph.h \
|
|
bipartite_graph_internal.h \
|
|
bit_ops.h \
|
|
cmd_line.h \
|
|
crc.h \
|
|
daemon_init.h \
|
|
ethtool.h \
|
|
error.h \
|
|
event.h \
|
|
fd.h \
|
|
few.h \
|
|
if.h \
|
|
keyval_parse.h \
|
|
malloc.h \
|
|
net.h \
|
|
numtostr.h \
|
|
opal_environ.h \
|
|
opal_getcwd.h \
|
|
opal_pty.h \
|
|
os_dirpath.h \
|
|
os_path.h \
|
|
output.h \
|
|
path.h \
|
|
printf.h \
|
|
proc.h \
|
|
qsort.h \
|
|
show_help.h \
|
|
show_help_lex.h \
|
|
stacktrace.h \
|
|
string_copy.h \
|
|
sys_limits.h \
|
|
timings.h \
|
|
uri.h \
|
|
info_subscriber.h \
|
|
info.h
|
|
|
|
libopalutil_la_SOURCES = \
|
|
$(headers) \
|
|
alfg.c \
|
|
arch.c \
|
|
argv.c \
|
|
basename.c \
|
|
bipartite_graph.c \
|
|
cmd_line.c \
|
|
crc.c \
|
|
daemon_init.c \
|
|
ethtool.c \
|
|
error.c \
|
|
event.c \
|
|
fd.c \
|
|
few.c \
|
|
if.c \
|
|
keyval_parse.c \
|
|
malloc.c \
|
|
net.c \
|
|
numtostr.c \
|
|
opal_environ.c \
|
|
opal_getcwd.c \
|
|
opal_pty.c \
|
|
os_dirpath.c \
|
|
os_path.c \
|
|
output.c \
|
|
path.c \
|
|
printf.c \
|
|
proc.c \
|
|
qsort.c \
|
|
show_help.c \
|
|
show_help_lex.l \
|
|
stacktrace.c \
|
|
string_copy.c \
|
|
sys_limits.c \
|
|
uri.c \
|
|
info_subscriber.c \
|
|
info.c
|
|
|
|
if OPAL_COMPILE_TIMING
|
|
libopalutil_la_SOURCES += timings.c
|
|
endif
|
|
|
|
libopalutil_la_LIBADD = \
|
|
keyval/libopalutilkeyval.la
|
|
libopalutil_la_DEPENDENCIES = \
|
|
keyval/libopalutilkeyval.la
|
|
|
|
# Conditionally install the header files
|
|
|
|
if WANT_INSTALL_HEADERS
|
|
opaldir = $(opalincludedir)/$(subdir)
|
|
opal_HEADERS = $(headers)
|
|
endif
|
|
|
|
maintainer-clean-local:
|
|
rm -f show_help_lex.c
|