diff options
author | Aníbal Limón <anibal.limon@linux.intel.com> | 2015-03-09 14:57:44 -0600 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2015-03-21 16:42:22 +0100 |
commit | d05dede558616ea54e0c1d7ba7c671eab27a9d1c (patch) | |
tree | 26c69843d83e18e5f83dfbb15fccc5caac603e6d /meta-oe/recipes-devtools/mpich | |
parent | 824b6de96ddfe791a0013d96a84ad49de8e04d38 (diff) | |
download | meta-openembedded-d05dede558616ea54e0c1d7ba7c671eab27a9d1c.tar.gz |
mpich: Disable RPATH to avoid issues in package_qa
Set --disable-rpath to extra opts in order to avoid issues
in package_qa also change default pm to gforker because
hydra has problems with RPATH.
TODO: Make a patch for solve hydra rpath issues.
Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-devtools/mpich')
-rw-r--r-- | meta-oe/recipes-devtools/mpich/mpich_3.1.1.bb | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/meta-oe/recipes-devtools/mpich/mpich_3.1.1.bb b/meta-oe/recipes-devtools/mpich/mpich_3.1.1.bb index 2f4226ea9..0225ceef9 100644 --- a/meta-oe/recipes-devtools/mpich/mpich_3.1.1.bb +++ b/meta-oe/recipes-devtools/mpich/mpich_3.1.1.bb | |||
@@ -1,20 +1,25 @@ | |||
1 | SUMMARY = "Message Passing Interface(MPI) implementation" | 1 | SUMMARY = "Message Passing Interface (MPI) implementation" |
2 | HOMEPAGE = "http://git.mpich.org/mpich.git/" | 2 | HOMEPAGE = "http://www.mpich.org/" |
3 | SECTION = "devel" | 3 | SECTION = "devel" |
4 | 4 | ||
5 | LICENSE = "BSD-2-Clause" | 5 | LICENSE = "BSD-2-Clause" |
6 | LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=2106f0435056f3dd9349747a766e5816" | 6 | LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=2106f0435056f3dd9349747a766e5816" |
7 | 7 | ||
8 | SRC_URI = "http://www.mpich.org/static/downloads/${PV}/mpich-${PV}.tar.gz" | 8 | SRC_URI = " \ |
9 | http://www.mpich.org/static/downloads/${PV}/mpich-${PV}.tar.gz \ | ||
10 | " | ||
11 | |||
9 | SRC_URI[md5sum] = "40dc408b1e03cc36d80209baaa2d32b7" | 12 | SRC_URI[md5sum] = "40dc408b1e03cc36d80209baaa2d32b7" |
10 | SRC_URI[sha256sum] = "455ccfaf4ec724d2cf5d8bff1f3d26a958ad196121e7ea26504fd3018757652d" | 13 | SRC_URI[sha256sum] = "455ccfaf4ec724d2cf5d8bff1f3d26a958ad196121e7ea26504fd3018757652d" |
11 | 14 | ||
12 | RDEPENDS_${PN} += "bash perl tcsh" | 15 | RDEPENDS_${PN} += "bash perl libxml2" |
13 | S = "${WORKDIR}/${PN}-${PV}" | 16 | S = "${WORKDIR}/${PN}-${PV}" |
14 | 17 | ||
15 | EXTRA_OECONF = "--enable-debuginfo \ | 18 | EXTRA_OECONF = "--enable-debuginfo \ |
16 | --enable-fast \ | 19 | --enable-fast \ |
17 | --enable-shared \ | 20 | --enable-shared \ |
21 | --with-pm=gforker \ | ||
22 | --disable-rpath \ | ||
18 | --disable-f77 \ | 23 | --disable-f77 \ |
19 | --disable-fc \ | 24 | --disable-fc \ |
20 | --disable-fortran \ | 25 | --disable-fortran \ |