From: Zubair Lutfullah Kakakhel Date: Fri, 2 Sep 2016 16:01:42 +0000 (+0100) Subject: valgrind: Disable for MIPS Soft Float X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~24384 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f45a2907ba621d5e87614adcc724838fd32ad8ba;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git valgrind: Disable for MIPS Soft Float Valgrind doesn't build for MIPS soft float. Disable the build until the package has support for it. Signed-off-by: Zubair Lutfullah Kakakhel Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-devtools/valgrind/valgrind_3.11.0.bb b/meta/recipes-devtools/valgrind/valgrind_3.11.0.bb index 13354f4b5ff..3d49131cbad 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' 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"