c22e1ae33b
These two macros set the prefix for the OPAL and ORTE libraries, respectively. Specifically, the OPAL library will be named libPREFIXopen-pal.la and the ORTE library will be named libPREFIXopen-rte.la. These macros must be called, even if the prefix argument is empty. The intent is that Open MPI will call these macros with an empty prefix, but other projects (such as ORCM) will call these macros with a non-empty prefix. For example, ORCM libraries can be named liborcm-open-pal.la and liborcm-open-rte.la. This scheme is necessary to allow running Open MPI applications under systems that use their own versions of ORTE and OPAL. For example, when running MPI applications under ORTE, if the ORTE and OPAL libraries between OMPI and ORCM are not identical (which, because they are released at different times, are likely to be different), we need to ensure that the OMPI applications link against their ORTE and OPAL libraries, but the ORCM executables link against their ORTE and OPAL libraries.
26 строки
929 B
Plaintext
26 строки
929 B
Plaintext
# There can be multiple blocks of configuration data, chosen by
|
|
# compiler flags (using the compiler_args key to chose which block
|
|
# should be activated. This can be useful for multilib builds. See the
|
|
# multilib page at:
|
|
# https://github.com/open-mpi/ompi/wiki/compilerwrapper3264
|
|
# for more information.
|
|
|
|
project=Open Portable Access Layer (OPAL)
|
|
project_short=OPAL
|
|
version=@OPAL_VERSION@
|
|
language=C
|
|
compiler_env=CC
|
|
compiler_flags_env=CFLAGS
|
|
compiler=@WRAPPER_CC@
|
|
preprocessor_flags=@OPAL_WRAPPER_EXTRA_CPPFLAGS@
|
|
compiler_flags_prefix=@OPAL_WRAPPER_EXTRA_CFLAGS_PREFIX@
|
|
compiler_flags=@OPAL_WRAPPER_EXTRA_CFLAGS@
|
|
linker_flags=@OPAL_WRAPPER_EXTRA_LDFLAGS@
|
|
libs=-l@OPAL_LIB_PREFIX@open-pal
|
|
libs_static=-l@OPAL_LIB_PREFIX@open-pal @OPAL_WRAPPER_EXTRA_LIBS@
|
|
dyn_lib_file=lib@OPAL_LIB_PREFIX@open-pal.@OPAL_DYN_LIB_SUFFIX@
|
|
static_lib_file=lib@OPAL_LIB_PREFIX@open-pal.a
|
|
required_file=
|
|
includedir=${includedir}
|
|
libdir=${libdir}
|