We are seeing some random build failures related to how bitbake chooses which llvm-config to run during do_compile. This locks the path to llvm-config to the native version of the tool.
Signed-off-by: Ryan Eatmon <[email protected]> Suggested-by: Denys Dmytriyenko <[email protected]> --- meta-arago-extras/recipes-ti/ocl/clocl_git.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-arago-extras/recipes-ti/ocl/clocl_git.bb b/meta-arago-extras/recipes-ti/ocl/clocl_git.bb index 9b2a3aa9..52deaab8 100644 --- a/meta-arago-extras/recipes-ti/ocl/clocl_git.bb +++ b/meta-arago-extras/recipes-ti/ocl/clocl_git.bb @@ -19,7 +19,7 @@ TARGET:class-nativesdk = "x86" EXTRA_OEMAKE = " -C ${S}/clocl \ _PRODUCT_VERSION=${PV} \ TARGET=${TARGET} \ - LLVM_CONFIG_EXE=llvm-config \ + LLVM_CONFIG_EXE=${STAGING_BINDIR_NATIVE}/llvm-config \ " do_compile() { -- 2.17.1 -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#14807): https://lists.yoctoproject.org/g/meta-arago/message/14807 Mute This Topic: https://lists.yoctoproject.org/mt/100278599/21656 Group Owner: [email protected] Unsubscribe: https://lists.yoctoproject.org/g/meta-arago/leave/10763299/21656/89520264/xyzzy [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
