kumquat-buildroot/package/openmpi/openmpi.mk
Vicente Olivert Riera f3935440e9 openmpi: new package
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>
2016-06-09 22:28:11 +02:00

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))