Yocto dunfell 配方,不能依赖 hdf5

Posted

技术标签:

【中文标题】Yocto dunfell 配方,不能依赖 hdf5【英文标题】:Yocto dunfell recipe, cannot depend on hdf5 【发布时间】:2021-06-24 14:42:26 【问题描述】:

我正在使用 yocto 3.1(dunfell) 创建一个名为 (eeel) 的配方,它依赖于 hdf5。

在我的食谱中,hdf5DEPENDS 中列出:

DEPENDS += " zlib protobuf protobuf-native curl asio tclap hdf5"

当我bitbake eeel(我的食谱)时,我收到了这个错误:

| CMake Error at /home/concc/yocto-tegra/build/tmp/work/aarch64-poky-linux/eeel/5.8-r0/recipe-sysroot/usr/share/cmake/hdf5/hdf5-targets.cmake:219 (message):
|   The imported target "hdf5::h5diff" references the file
| 
|      "/home/concc/yocto-tegra/build/tmp/work/aarch64-poky-linux/eeel/5.8-r0/recipe-sysroot/usr/bin/h5diff"
| 
|   but this file does not exist.  Possible reasons include:
| 
|   * The file was deleted, renamed, or moved to another location.
| 
|   * An install or uninstall procedure did not complete successfully.
| 
|   * The installation package was faulty and contained
| 
|      "/home/concc/yocto-tegra/build/tmp/work/aarch64-poky-linux/eeel/5.8-r0/recipe-sysroot/usr/share/cmake/hdf5/hdf5-targets.cmake"
| 
|   but not all the files it references.
| 
| Call Stack (most recent call first):
|   /home/concc/yocto-tegra/build/tmp/work/aarch64-poky-linux/eeel/5.8-r0/recipe-sysroot/usr/share/cmake/hdf5/hdf5-config.cmake:127 (include)
|   CMakeLists.txt:12 (find_package)
| 
| 
| -- Configuring incomplete, errors occurred!

似乎build/tmp/work/aarch64-poky-linux/eeel/5.8-r0/recipe-sysroot/usr/bin/h5diff 是预期的。我检查了文件夹,h5diff 不存在。所以我猜错误信息是正确的。

然后我检查了build/tmp/work/aarch64-poky-linux/eeel/5.8-r0/recipe-sysroot/usr/lib、libhdf5.a 和 libhdf5.so 以及其他 libhdf5* 文件,这是 hdf5 构建成功的标志吗?

我还检查了build/tmp/work/aarch64-poky-linux/hdf5/1.8.21-r0/image/usr/bin,这是hdf5的输出,h5diff在那里。所以生成了h5diff。

所以这是我的结论: hdf5 已成功编译、安装,它的 lib 文件复制到我的配方的recipe-sysroot/usr/lib,但它的可执行文件没有复制到我的recipe-sysroot/usr/bin

我不确定这是否是 hdf5 的配方文件 (http://layers.openembedded.org/layerindex/recipe/123207/) 的错误,或者我错过了 eeel 的 .bb 文件中的某些内容。

无论如何要将h5diff 文件复制到我的recipe-sysroot/usr/bin 中?

do_prepare_recipe_sysroot(https://docs.yoctoproject.org/singleindex.html#ref-tasks-prepare-recipe-sysroot)有关系吗?

谢谢

【问题讨论】:

【参考方案1】:

要在目标上运行的二进制文件不是 sysroot 的一部分,因为 sysroot 仅用于构建时依赖项,而目标二进制文件不能在构建时使用。 SYSROOT_DIRS 指定安装在 sysroot 中的文件/目录(参见 https://docs.yoctoproject.org/ref-manual/variables.html#term-SYSROOT_DIRS)。

如果应该在构建时执行hdf5,您需要在hdf5-native 上执行DEPENDS,以便为主机架构构建的二进制文件可以在构建时运行。 SYSROOT_DIRS_NATIVE 指定哪些文件/目录安装在 sysroot-native 中(为主机架构编译;c.f. https://docs.yoctoproject.org/ref-manual/variables.html#term-SYSROOT_DIRS_NATIVE)。如果您需要链接到hdf5 或在运行时也需要它的二进制文件,您将在DEPENDS 中同时拥有hdf5-nativehdf5

【讨论】:

如果我制作DEPENDS += " hdf5 hdf5-native",在bitbake之后,h5diff出现在我的eeel/5.8-r0/recipe-sysroot-native/usr/bin中(带有-native后缀)但不是eeel/5.8-r0/recipe-sysroot/usr/bin,所以错误仍然存在。 如果h5diff需要在构建时运行,则eeel查看的路径不正确,需要修改。必须修复 CMake/meson/Makefile 工具以在 Yocto(或任何构建系统)中交叉编译或使用正确路径的情况并不少见。【参考方案2】:

我最终这样做了:

do_configure_prepend() 
  cp $WORKDIR/recipe-sysroot-native/usr/bin/h5* $WORKDIR/recipe-sysroot/usr/bin/

【讨论】:

以上是关于Yocto dunfell 配方,不能依赖 hdf5的主要内容,如果未能解决你的问题,请参考以下文章

无法构建,因为配方 sysroot 中缺少依赖项 - yocto

如何在 Yocto 配方中获取 Bash 脚本

如何在yocto中编写makefile的配方

在 yocto 配方中使用 npm-install

Yocto bitbake 错误:没有提供“配方名称”

获取安装在Yocto bin_package中的库的依赖列表。