diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2013-01-25 15:17:06 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-02-15 13:05:29 +0000 |
commit | 8d42fc1005ce8fbda438a63e1e5227bb197ee492 (patch) | |
tree | 3a4cd22c792b4b28a200c7604b539756eed08340 | |
parent | 046bbc1c9c3cee109bb4d9abafab5fb07480c7e7 (diff) | |
download | poky-8d42fc1005ce8fbda438a63e1e5227bb197ee492.tar.gz |
valgrind: explicitly disable MPI2 support
We don't have support for this in OE-Core, so ensure we don't pick this
up from the build host if e.g. openmpi development files happen to be
installed there.
Fixes [YOCTO #3726].
(From OE-Core rev: cc490d76aba0a778409ca1a3d0e1f2c308684c9b)
(From OE-Core rev: 1fb5a50a8bbda7ca717125abcc4cb99b50ba6ead)
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-devtools/valgrind/valgrind_3.7.0.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-devtools/valgrind/valgrind_3.7.0.bb b/meta/recipes-devtools/valgrind/valgrind_3.7.0.bb index 3def11dd39..10c87aedfd 100644 --- a/meta/recipes-devtools/valgrind/valgrind_3.7.0.bb +++ b/meta/recipes-devtools/valgrind/valgrind_3.7.0.bb | |||
@@ -32,8 +32,8 @@ COMPATIBLE_HOST_armv7a = 'arm.*-linux' | |||
32 | 32 | ||
33 | inherit autotools | 33 | inherit autotools |
34 | 34 | ||
35 | EXTRA_OECONF = "--enable-tls" | 35 | EXTRA_OECONF = "--enable-tls --without-mpicc" |
36 | EXTRA_OECONF_armv7a = "--enable-tls -host=armv7-none-linux-gnueabi" | 36 | EXTRA_OECONF_armv7a = "--enable-tls -host=armv7-none-linux-gnueabi --without-mpicc" |
37 | EXTRA_OEMAKE = "-w" | 37 | EXTRA_OEMAKE = "-w" |
38 | PARALLEL_MAKE = "" | 38 | PARALLEL_MAKE = "" |
39 | 39 | ||