From: Valentin Longchamp Date: Sat, 20 Jun 2020 13:10:46 +0000 (+0000) Subject: valgrind: disable it for powerpc soft-float X-Git-Tag: uninative-2.9~426 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=effd1434a6ca6afcc358bea64053a7bf805633c7;p=openembedded-core.git valgrind: disable it for powerpc soft-float valgrind doesn't build for powerpc soft-float. It is thus disabled for such architectures. Signed-off-by: Valentin Longchamp Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-devtools/valgrind/valgrind_3.16.0.bb b/meta/recipes-devtools/valgrind/valgrind_3.16.0.bb index 5402f39a5b..4b6f5949dd 100644 --- a/meta/recipes-devtools/valgrind/valgrind_3.16.0.bb +++ b/meta/recipes-devtools/valgrind/valgrind_3.16.0.bb @@ -52,6 +52,9 @@ COMPATIBLE_HOST_armv4 = 'null' COMPATIBLE_HOST_armv5 = 'null' COMPATIBLE_HOST_armv6 = 'null' +# valgrind fails with powerpc soft-float +COMPATIBLE_HOST_powerpc = "${@bb.utils.contains('TARGET_FPU', 'soft', 'null', '.*-linux', d)}" + # X32 isn't supported by valgrind at this time COMPATIBLE_HOST_linux-gnux32 = 'null' COMPATIBLE_HOST_linux-muslx32 = 'null'