ec7258f3f4
Notable changes in this commit: - change from v4.0.x to v4.1.x "current" version series, - move the sha256 hash out of the "Locally computed" section, as the value comes from the download page, - the LICENSE file hash changed, as the file was updated (copyright years updated and new contributors added), - the IME (Infinite Memory Engine), introduced in v4.1.x, is disabled to workaround a failure when cross-compiled, - the package now requires a toolchain with atomic support, and needs to link against libatomic when needed. For change log since v4.0.0, see: - https://github.com/open-mpi/ompi/blob/v4.1.4/NEWS#L61 Signed-off-by: Julien Olivain <ju.o@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
23 lines
726 B
Plaintext
23 lines
726 B
Plaintext
comment "openmpi needs a toolchain w/ dynamic library, NPTL, wchar, C++"
|
|
depends on BR2_USE_MMU
|
|
depends on BR2_TOOLCHAIN_HAS_ATOMIC
|
|
depends on !BR2_sparc
|
|
depends on BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS_NPTL \
|
|
|| !BR2_USE_WCHAR || !BR2_INSTALL_LIBSTDCPP
|
|
|
|
config BR2_PACKAGE_OPENMPI
|
|
bool "openmpi"
|
|
depends on BR2_USE_MMU # fork()
|
|
depends on BR2_USE_WCHAR
|
|
depends on BR2_TOOLCHAIN_HAS_ATOMIC
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on !BR2_STATIC_LIBS # dlfcn.h
|
|
# from the configure script: "Sparc v8 target is not supported
|
|
# in this release of Open MPI"
|
|
depends on !BR2_sparc
|
|
help
|
|
A High Performance Message Passing Library.
|
|
|
|
https://www.open-mpi.org/
|