This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

[参考译文] PROCESSOR-SDK-AM64X:rm-comput-library-24.12 的 Yocto 构建错误

Guru**** 2430620 points


请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

https://e2e.ti.com/support/processors-group/processors/f/processors-forum/1543418/processor-sdk-am64x-yocto-build-error-for-rm-compute-library-24-12

器件型号:PROCESSOR-SDK-AM64X


工具/软件:

在对机器“am64xx-EVM"获取“获取错误进行 Yocto 构建时、ARM-COMPUTE-library-24.12 会出现错误

WARNING: arm-compute-library-24.12-r0 do_fetch: Failed to fetch URL git://github.com/ARM-software/ComputeLibrary.git;branch=main;protocol=https, attempting MIRRORS if available
ERROR: arm-compute-library-24.12-r0 do_fetch: Fetcher failure: Unable to find revision 32bcced2af7feea6969dd1d22e58d0718dc488e3 in branch main even from upstream
ERROR: arm-compute-library-24.12-r0 do_fetch: Bitbake Fetcher Error: FetchError('Unable to fetch URL from any source.', 'git://github.com/ARM-software/ComputeLibrary.git;branch=main;protocol=https')
ERROR: Logfile of failure stored in: /home/swathi/tisdk/build/arago-tmp-default-glibc/work/aarch64-oe-linux/arm-compute-library/24.12/temp/log.do_fetch.13747
ERROR: Task (/home/swathi/tisdk/sources/meta-arago/meta-arago-extras/recipes-devtools/arm-compute-library/arm-compute-library_24.12.bb:do_fetch) failed with exit code '1'

可用的 arm-compute 版本似乎是 v25.04。 为什么它指的是旧版本 24.12?

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    v11.01.05.03 时、我遇到了同样的问题。  

    获取错误和补丁错误。

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    在  `m正在 github.com/.../ComputeLibrary 访问的上游 Git 存储库后、看起来 Git commit Yocto 尝试访问的内容不再属于` ain 分支、但现在却位于不同的分支(仍然是同一个 Git 存储库)上、因为一些上游的更改超出了我们的控制范围。

    如果按如下所示更新 Yocto 层、应再次允许获取和构建该收件人:

    $ git diff
    diff --git a/meta-arago-extras/recipes-devtools/arm-compute-library/arm-compute-library_24.12.bb b/meta-arago-extras/recipes-devtools/arm-compute-library/arm-compute-library_24.12.bb
    index f4129a75..db376433 100644
    --- a/meta-arago-extras/recipes-devtools/arm-compute-library/arm-compute-library_24.12.bb
    +++ b/meta-arago-extras/recipes-devtools/arm-compute-library/arm-compute-library_24.12.bb
    @@ -4,7 +4,7 @@ LICENSE = "MIT"
     LIC_FILES_CHKSUM = "file://LICENSES/MIT.txt;md5=35f8944fae972976691f3483b0ac9dba"
    
     SRC_URI = " \
    -    git://github.com/ARM-software/ComputeLibrary.git;branch=main;protocol=https \
    +    git://github.com/ARM-software/ComputeLibrary.git;branch=archived-releases;protocol=https \
         file://0001-fix-Fix-indention-in-cmake-generator-script.patch \
         file://0002-Use-ARM_COMPUTE_ENABLE_NEON-in-code-for-checking-NEO.patch \
         file://0003-Use-ARM_COMPUTE_ENABLE_SVE-in-code-for-checking-SVE-.patch \

    此致、Andreas