mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-04 16:10:10 +00:00
Add mpich support
This patch add mpich support to yocto in order to run MPI framework on embedded systems. Signed-off-by: Alejandro Hernandez <alejandro.hernandez@linux.intel.com> Signed-off-by: Victor Rodriguez <victor.rodriguez.bahena@intel.com> Signed-off-by: Alexandru.Vaduva <Alexandru.Vaduva@enea.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
This commit is contained in:
parent
fca56b63f2
commit
824b6de96d
29
meta-oe/recipes-devtools/mpich/mpich_3.1.1.bb
Normal file
29
meta-oe/recipes-devtools/mpich/mpich_3.1.1.bb
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
SUMMARY = "Message Passing Interface(MPI) implementation"
|
||||
HOMEPAGE = "http://git.mpich.org/mpich.git/"
|
||||
SECTION = "devel"
|
||||
|
||||
LICENSE = "BSD-2-Clause"
|
||||
LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=2106f0435056f3dd9349747a766e5816"
|
||||
|
||||
SRC_URI = "http://www.mpich.org/static/downloads/${PV}/mpich-${PV}.tar.gz"
|
||||
SRC_URI[md5sum] = "40dc408b1e03cc36d80209baaa2d32b7"
|
||||
SRC_URI[sha256sum] = "455ccfaf4ec724d2cf5d8bff1f3d26a958ad196121e7ea26504fd3018757652d"
|
||||
|
||||
RDEPENDS_${PN} += "bash perl tcsh"
|
||||
S = "${WORKDIR}/${PN}-${PV}"
|
||||
|
||||
EXTRA_OECONF = "--enable-debuginfo \
|
||||
--enable-fast \
|
||||
--enable-shared \
|
||||
--disable-f77 \
|
||||
--disable-fc \
|
||||
--disable-fortran \
|
||||
--disable-cxx"
|
||||
|
||||
inherit autotools-brokensep gettext
|
||||
|
||||
do_configure_prepend() {
|
||||
autoreconf --verbose --install --force -I . -I confdb/ -I maint/
|
||||
oe_runconf
|
||||
exit
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user