diff options
author | Randy MacLeod <Randy.MacLeod@windriver.com> | 2018-11-07 12:59:22 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-11-09 15:27:34 +0000 |
commit | 73f8baa8d87f8c5e10b767ab669eccc21c018b37 (patch) | |
tree | 64c578f0395af9e7736ba83a92f75be2a5bf206f | |
parent | b1c3b40146df078a3c10d31b5a01334798951c7d (diff) | |
download | poky-73f8baa8d87f8c5e10b767ab669eccc21c018b37.tar.gz |
valgrind: drop mips n32 support
valgrind for qemumips64 multilib builds fails to configure
for libn32 with the error:
configure:6190: checking for 32 bit build support
...
fatal error: bits/long-double-32.h: No such file or directory
It seems that the toolchain is producing:
tmp-glibc/sysroots-components/mips64-n32/libn32-glibc/usr/include/bits/long-double-n32.h
Until the toolchain problem is resolved, skip valgrind for libn32.
(From OE-Core rev: 17d5574f05384edeb5c80ada2724fff4a1c3c94b)
Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-core/packagegroups/packagegroup-core-tools-profile.bb | 1 | ||||
-rw-r--r-- | meta/recipes-devtools/valgrind/valgrind_3.14.0.bb | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-core/packagegroups/packagegroup-core-tools-profile.bb b/meta/recipes-core/packagegroups/packagegroup-core-tools-profile.bb index 4ec1f9284f..33d9c09a66 100644 --- a/meta/recipes-core/packagegroups/packagegroup-core-tools-profile.bb +++ b/meta/recipes-core/packagegroups/packagegroup-core-tools-profile.bb | |||
@@ -63,6 +63,7 @@ VALGRIND_armeb = "" | |||
63 | VALGRIND_aarch64 = "" | 63 | VALGRIND_aarch64 = "" |
64 | VALGRIND_riscv64 = "" | 64 | VALGRIND_riscv64 = "" |
65 | VALGRIND_linux-gnux32 = "" | 65 | VALGRIND_linux-gnux32 = "" |
66 | VALGRIND_linux-gnun32 = "" | ||
66 | 67 | ||
67 | RDEPENDS_${PN} = "\ | 68 | RDEPENDS_${PN} = "\ |
68 | ${PROFILETOOLS} \ | 69 | ${PROFILETOOLS} \ |
diff --git a/meta/recipes-devtools/valgrind/valgrind_3.14.0.bb b/meta/recipes-devtools/valgrind/valgrind_3.14.0.bb index 7f0a93f6f8..97e58a446a 100644 --- a/meta/recipes-devtools/valgrind/valgrind_3.14.0.bb +++ b/meta/recipes-devtools/valgrind/valgrind_3.14.0.bb | |||
@@ -54,6 +54,7 @@ COMPATIBLE_HOST_linux-muslx32 = 'null' | |||
54 | 54 | ||
55 | # Disable for some MIPS variants | 55 | # Disable for some MIPS variants |
56 | COMPATIBLE_HOST_mipsarchr6 = 'null' | 56 | COMPATIBLE_HOST_mipsarchr6 = 'null' |
57 | COMPATIBLE_HOST_linux-gnun32 = 'null' | ||
57 | 58 | ||
58 | inherit autotools ptest multilib_header | 59 | inherit autotools ptest multilib_header |
59 | 60 | ||