]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
valgrind: Disable for MIPS Soft Float
authorZubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
Fri, 2 Sep 2016 16:01:42 +0000 (17:01 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 5 Sep 2016 10:55:50 +0000 (11:55 +0100)
Valgrind doesn't build for MIPS soft float. Disable the build until
the package has support for it.

Signed-off-by: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-devtools/valgrind/valgrind_3.11.0.bb

index 13354f4b5ff993403b9212e4a0ab9509d1fc8e36..3d49131cbadb3c480186ccfdf4e3b9a897ff21b7 100644 (file)
@@ -38,6 +38,10 @@ COMPATIBLE_HOST_armv4 = 'null'
 COMPATIBLE_HOST_armv5 = 'null'
 COMPATIBLE_HOST_armv6 = 'null'
 
+# valgrind doesn't like mips soft float
+COMPATIBLE_HOST_mips = "${@bb.utils.contains("TARGET_FPU", "soft", "null", "mips-poky-linux", d)}"
+COMPATIBLE_HOST_mipsel = "${@bb.utils.contains("TARGET_FPU", "soft", "null", "mipsel-poky-linux", d)}"
+
 inherit autotools ptest
 
 EXTRA_OECONF = "--enable-tls --without-mpicc"