Yocto,修复do_rootfs中的计算事务错误?

时间:2019-04-29 15:33:09

标签: embedded-linux yocto

我正在尝试为自定义ARM linux板构建python3 pyinstaller模块。 pyinstaller可以正确构建,我可以使用devtool deploy-target选项在我的主板上对其进行测试。

但是在创建rootfs时会引发以下错误。

Loading cache...
Updating cache...               ######################################## [100%]

Computing transaction...error: Can't install python3-pyinstaller-1.0-r0@cortexa9hf_neon: no package provides libdl.so.2(GLIBC_2.0)

这是我的食谱文件


inherit setuptools3
LIC_FILES_CHKSUM = "file://PKG-INFO;md5=a06c8045451145c089b1af8542f8f178" 


SRC_URI[md5sum] = "e256bf3f989cb1a1b9a38cef4a187b4c"
SRC_URI[sha256sum] = "a5a6e04a66abfcf8761e89a2ebad937919c6be33a7b8963e1a961b55cb35986b"
INSANE_SKIP_${PN}_append = "already-stripped"

S = "${WORKDIR}/PyInstaller-3.4"
RDEPENDS_${PN} = " python3-altgraph python3-macholib python3-pefile python3-future"

SRC_URI = " \
        https://files.pythonhosted.org/packages/03/32/0e0de593f129bf1d1e77eed562496d154ef4460fd5cecfd78612ef39a0cc/PyInstaller-3.4.tar.gz \
        file://run \
"


帮我解决此错误。

0 个答案:

没有答案