diff options
author | Valentin Longchamp <valentin@longchamp.me> | 2020-06-20 13:10:46 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-06-23 12:31:03 +0100 |
commit | 18ce5582eac5633c622ac82770567390c03020bd (patch) | |
tree | d185ba978012e1175f5a528ab1b2f5aa24e2454a | |
parent | afca282e4b7c1ff43ee554d9baba7dc748fb29bb (diff) | |
download | poky-18ce5582eac5633c622ac82770567390c03020bd.tar.gz |
valgrind: disable it for powerpc soft-float
valgrind doesn't build for powerpc soft-float. It is thus disabled for
such architectures.
(From OE-Core rev: effd1434a6ca6afcc358bea64053a7bf805633c7)
Signed-off-by: Valentin Longchamp <valentin@longchamp.me>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-devtools/valgrind/valgrind_3.16.0.bb | 3 |
1 files changed, 3 insertions, 0 deletions
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' | |||
52 | COMPATIBLE_HOST_armv5 = 'null' | 52 | COMPATIBLE_HOST_armv5 = 'null' |
53 | COMPATIBLE_HOST_armv6 = 'null' | 53 | COMPATIBLE_HOST_armv6 = 'null' |
54 | 54 | ||
55 | # valgrind fails with powerpc soft-float | ||
56 | COMPATIBLE_HOST_powerpc = "${@bb.utils.contains('TARGET_FPU', 'soft', 'null', '.*-linux', d)}" | ||
57 | |||
55 | # X32 isn't supported by valgrind at this time | 58 | # X32 isn't supported by valgrind at this time |
56 | COMPATIBLE_HOST_linux-gnux32 = 'null' | 59 | COMPATIBLE_HOST_linux-gnux32 = 'null' |
57 | COMPATIBLE_HOST_linux-muslx32 = 'null' | 60 | COMPATIBLE_HOST_linux-muslx32 = 'null' |