Yocto dunfell 配方,不能依赖于 hdf5

Yocto dunfell recipe, cannot depend on hdf5

我正在使用 yocto 3.1(dunfell) 创建一个依赖于 hdf5 的名为 (eeel) 的食谱。

在我的食谱中,hdf5 列在 DEPENDS:

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_sysroothttps://docs.yoctoproject.org/singleindex.html#ref-tasks-prepare-recipe-sysroot)有关吗?

谢谢

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

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

我最后这样做了:

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