diff options
author | Hongxu Jia <hongxu.jia@windriver.com> | 2024-12-28 17:31:31 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-01-03 11:05:03 +0000 |
commit | 85cbf033b43590ba3440df17bd35de4d8982cec6 (patch) | |
tree | 1aea4caa683b86b762b71067d122080421c643c2 | |
parent | 6a0323daf4a795e236dadc8acc756ddb8900c1c6 (diff) | |
download | poky-85cbf033b43590ba3440df17bd35de4d8982cec6.tar.gz |
packagegroup-core-tools-profile: skip VALGRIND for loongarch64
Due to packagegroup-core-tools-profile run time depend
on package valgrind and recipe valgrind does not support
loongarch64, then skip VALGRIND for loongarch64
$ echo "MACHINE = 'qemuloongarch64'" >> conf/local.conf
$ bitbake world
|ERROR: Nothing RPROVIDES 'valgrind' (but oe-core/meta/recipes-core/
packagegroups/packagegroup-core-tools-profile.bb RDEPENDS on or
otherwise requires it)
|valgrind was skipped: incompatible with host loongarch64-wrs-linux
(not in COMPATIBLE_HOST)
|NOTE: Runtime target 'valgrind' is unbuildable, removing...
|Missing or unbuildable dependency chain was: ['valgrind']
|ERROR: Required build target 'meta-world-pkgdata' has no buildable providers.
|Missing or unbuildable dependency chain was: ['meta-world-pkgdata',
'packagegroup-core-tools-profile', 'valgrind']
(From OE-Core rev: 2ef616b4e43f5c4d3155201f743e48d6ff6bb400)
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-core/packagegroups/packagegroup-core-tools-profile.bb | 1 |
1 files changed, 1 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 f471cf977c..4e324caa96 100644 --- a/meta/recipes-core/packagegroups/packagegroup-core-tools-profile.bb +++ b/meta/recipes-core/packagegroups/packagegroup-core-tools-profile.bb | |||
@@ -55,6 +55,7 @@ VALGRIND:riscv32 = "" | |||
55 | VALGRIND:powerpc = "${@bb.utils.contains('TARGET_FPU', 'soft', '', 'valgrind', d)}" | 55 | VALGRIND:powerpc = "${@bb.utils.contains('TARGET_FPU', 'soft', '', 'valgrind', d)}" |
56 | VALGRIND:linux-gnux32 = "" | 56 | VALGRIND:linux-gnux32 = "" |
57 | VALGRIND:linux-gnun32 = "" | 57 | VALGRIND:linux-gnun32 = "" |
58 | VALGRIND:loongarch64 = "" | ||
58 | 59 | ||
59 | RDEPENDS:${PN} = "\ | 60 | RDEPENDS:${PN} = "\ |
60 | ${PROFILETOOLS} \ | 61 | ${PROFILETOOLS} \ |