diff options
author | Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com> | 2016-09-02 17:01:42 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-09-05 11:56:01 +0100 |
commit | d7268e9bbae93455a591bb4f73bfe4bf76497a1b (patch) | |
tree | 0b04d847a818ce365b5447f8dcbef3b5bca71395 /meta | |
parent | 8edb53c58b3954ce84cef2a58323f7ff6351d1d5 (diff) | |
download | poky-d7268e9bbae93455a591bb4f73bfe4bf76497a1b.tar.gz |
valgrind: Disable for MIPS Soft Float
Valgrind doesn't build for MIPS soft float. Disable the build until
the package has support for it.
(From OE-Core rev: f45a2907ba621d5e87614adcc724838fd32ad8ba)
Signed-off-by: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/valgrind/valgrind_3.11.0.bb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/recipes-devtools/valgrind/valgrind_3.11.0.bb b/meta/recipes-devtools/valgrind/valgrind_3.11.0.bb index 13354f4b5f..3d49131cba 100644 --- a/meta/recipes-devtools/valgrind/valgrind_3.11.0.bb +++ b/meta/recipes-devtools/valgrind/valgrind_3.11.0.bb | |||
@@ -38,6 +38,10 @@ COMPATIBLE_HOST_armv4 = 'null' | |||
38 | COMPATIBLE_HOST_armv5 = 'null' | 38 | COMPATIBLE_HOST_armv5 = 'null' |
39 | COMPATIBLE_HOST_armv6 = 'null' | 39 | COMPATIBLE_HOST_armv6 = 'null' |
40 | 40 | ||
41 | # valgrind doesn't like mips soft float | ||
42 | COMPATIBLE_HOST_mips = "${@bb.utils.contains("TARGET_FPU", "soft", "null", "mips-poky-linux", d)}" | ||
43 | COMPATIBLE_HOST_mipsel = "${@bb.utils.contains("TARGET_FPU", "soft", "null", "mipsel-poky-linux", d)}" | ||
44 | |||
41 | inherit autotools ptest | 45 | inherit autotools ptest |
42 | 46 | ||
43 | EXTRA_OECONF = "--enable-tls --without-mpicc" | 47 | EXTRA_OECONF = "--enable-tls --without-mpicc" |