2016-05-20 13:01:00 +02:00
|
|
|
comment "openmpi needs a toolchain w/ dynamic library, NPTL, wchar, C++"
|
|
|
|
depends on BR2_USE_MMU
|
package/openmpi: bump to version 4.1.4
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>
2023-02-07 23:09:38 +01:00
|
|
|
depends on BR2_TOOLCHAIN_HAS_ATOMIC
|
2016-08-18 22:59:38 +02:00
|
|
|
depends on !BR2_sparc
|
2016-05-20 13:01:00 +02:00
|
|
|
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
|
package/openmpi: bump to version 4.1.4
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>
2023-02-07 23:09:38 +01:00
|
|
|
depends on BR2_TOOLCHAIN_HAS_ATOMIC
|
2016-05-20 13:01:00 +02:00
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL
|
|
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
|
|
depends on !BR2_STATIC_LIBS # dlfcn.h
|
2016-08-18 22:59:38 +02:00
|
|
|
# from the configure script: "Sparc v8 target is not supported
|
|
|
|
# in this release of Open MPI"
|
|
|
|
depends on !BR2_sparc
|
2016-05-20 13:01:00 +02:00
|
|
|
help
|
|
|
|
A High Performance Message Passing Library.
|
|
|
|
|
|
|
|
https://www.open-mpi.org/
|