
* Add a configure time option to rename libmpi(_FOO).* - `--with-libmpi-name=STRING` * This commit only impacts the installed libraries. Internal, temporary libraries have not been renamed to limit the scope of the patch to only what is needed. For example: ```shell shell$ ./configure --with-libmpi-name=wookie ... shell$ find . -name "libmpi*" shell$ find . -name "libwookie*" ./lib/libwookie.so.0.0.0 ./lib/libwookie.so.0 ./lib/libwookie.so ./lib/libwookie.la ./lib/libwookie_mpifh.so.0.0.0 ./lib/libwookie_mpifh.so.0 ./lib/libwookie_mpifh.so ./lib/libwookie_mpifh.la ./lib/libwookie_usempi.so.0.0.0 ./lib/libwookie_usempi.so.0 ./lib/libwookie_usempi.so ./lib/libwookie_usempi.la shell$ ```
23 строки
753 B
PkgConfig
23 строки
753 B
PkgConfig
# Copyright (c) 2010 Cisco Systems, Inc. All rights reserved.
|
|
# Copyright (c) 2016 IBM Corporation. All rights reserved.
|
|
#
|
|
Name: Open MPI
|
|
Description: Portable high-performance MPI implementation
|
|
Version: @OMPI_VERSION@
|
|
URL: http://www.open-mpi.org/
|
|
#
|
|
prefix=@prefix@
|
|
exec_prefix=@exec_prefix@
|
|
includedir=@includedir@
|
|
libdir=@libdir@
|
|
pkgincludedir=@opalincludedir@
|
|
#
|
|
# Note that -lopen-pal and all the EXTRA_LIBS are only necessary when
|
|
# static linking (they're pulled in by libopen-rte.so's implicit
|
|
# dependencies), so only list these in Libs.private.
|
|
#
|
|
Libs: -L${libdir} @OMPI_PKG_CONFIG_LDFLAGS@ -l@OMPI_LIBMPI_NAME@
|
|
Libs.private: @OMPI_WRAPPER_EXTRA_LIBS@
|
|
#
|
|
Cflags: -I${includedir} @OMPI_WRAPPER_EXTRA_CPPFLAGS@ @OMPI_WRAPPER_EXTRA_CFLAGS@
|