diff options
author | 2013-01-25 15:17:06 +0000 | |
---|---|---|
committer | 2013-01-30 08:34:32 -0800 | |
commit | b47d0b23d99a9f72c035c03883b36258da357426 (patch) | |
tree | a1d7bda454da63a1827347c0b88d1c85e7230faa | |
parent | 8617f7eb150c8caf81f73f7047c0b10d3683af2b (diff) | |
download | poky-b47d0b23d99a9f72c035c03883b36258da357426.tar.gz poky-b47d0b23d99a9f72c035c03883b36258da357426.tar.bz2 poky-b47d0b23d99a9f72c035c03883b36258da357426.zip |
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)
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 0bf6ef446d..690652a9a8 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' inherit autotools -EXTRA_OECONF = "--enable-tls" -EXTRA_OECONF_armv7a = "--enable-tls -host=armv7-none-linux-gnueabi" +EXTRA_OECONF = "--enable-tls --without-mpicc" +EXTRA_OECONF_armv7a = "--enable-tls -host=armv7-none-linux-gnueabi --without-mpicc" EXTRA_OEMAKE = "-w" PARALLEL_MAKE = "" |