f3935440e9
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> [Thomas: - disable the tracing mechanism using --disable-vt, since it was causing the build failure. Avoids the need for a patch. - remove the option to pass arbitrary config options. - specify the license as being BSD-3c instead of just BSD.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
21 lines
705 B
Makefile
21 lines
705 B
Makefile
################################################################################
|
|
#
|
|
# openmpi
|
|
#
|
|
################################################################################
|
|
|
|
OPENMPI_VERSION_MAJOR = 1.10
|
|
OPENMPI_VERSION = $(OPENMPI_VERSION_MAJOR).2
|
|
OPENMPI_SITE = https://www.open-mpi.org/software/ompi/v$(OPENMPI_VERSION_MAJOR)/downloads
|
|
OPENMPI_SOURCE = openmpi-$(OPENMPI_VERSION).tar.bz2
|
|
OPENMPI_LICENSE = BSD-3c
|
|
OPENMPI_LICENSE_FILES = LICENSE
|
|
OPENMPI_INSTALL_STAGING = YES
|
|
OPENMPI_CONF_OPTS = --disable-vt
|
|
|
|
# Disable fortran by default until we add BR2_TOOLCHAIN_HAS_FORTRAN
|
|
# hidden symbol to our toolchain infrastructure
|
|
OPENMPI_CONF_OPTS += --enable-mpi-fortran=no
|
|
|
|
$(eval $(autotools-package))
|