【发布时间】:2016-01-12 21:13:59
【问题描述】:
我正在尝试创建一个使用自动工具的相当简单的 BitBake 配方,您可以在此处看到:
SUMMARY = "an example autotools recipe"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
inherit autotools
SRC_URI = "file://${TOPDIR}/piu/geo_utilities"
S = "${TOPDIR}/piu/geo_utilities"
使用包含此配方的默认包启动 BitBake 构建后,do_configure 失败并显示以下内容:
configure: exit 0
WARNING: /home/presslertj/repos/new-bb-layers/poky-jethro-build/build/tmp/work/x86-poky-linux/geo-utilities/0.1-r0/temp/run.do_configure.48030:1 exit 1 from
exit 1
这似乎是矛盾的。 Here's 完整日志。什么会导致这种行为?
【问题讨论】:
-
从日志看来配置已经运行;你做完了吗?您还可以在运行配置步骤之前和之后检查
${WORKDIR}/build/目录吗? (当您运行 jethro 时,构建应该是树外的)。 geo_utilities 中的文件列表是什么样的?
标签: autotools configure yocto bitbake openembedded