From a0a9df0e8b5f62e69b65fa9f7129ac0954a45691 Mon Sep 17 00:00:00 2001 From: Kai Kang Date: Fri, 17 Sep 2021 21:14:38 +0800 Subject: rust-common.bbclass: make sure ccache exist It fails to run task rust_create_wrappers of recipe which inherit rust-common.bbclass such as rust-hello-world if no host ccache exists: | DEBUG: Executing shell function do_rust_create_wrappers | /path/to/project/tmp-glibc/work/core2-64-wrs-linux/rust-hello-world/git-r0/temp/run.do_rust_create_wrappers.3422: line 179: ccache: command not found Run task rust_create_wrappers before do_prepare_recipe_sysroot to make sure required tools such as ccache exist. (From OE-Core rev: 46575e0d5b9e722558b64e22ed928e6d7b2c654a) Signed-off-by: Kai Kang Signed-off-by: Richard Purdie --- meta/classes/rust-common.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/classes/rust-common.bbclass b/meta/classes/rust-common.bbclass index a8803d61b6..f7f9cbbb2e 100644 --- a/meta/classes/rust-common.bbclass +++ b/meta/classes/rust-common.bbclass @@ -176,5 +176,5 @@ do_rust_create_wrappers () { ${BUILD_CC} ${COREBASE}/meta/files/rust-ccld-wrapper.c -o ${RUST_TARGET_CCLD} } -addtask rust_create_wrappers before do_configure after do_patch +addtask rust_create_wrappers before do_configure after do_patch do_prepare_recipe_sysroot do_rust_create_wrappers[dirs] += "${WRAPPER_DIR}" -- cgit v1.2.3-54-g00ecf