在 OE/Yocto 中将 autotools 项目与中断的 out-of-tree 构建集成
Integrate autotools project with broken out-of-tree build in OE/Yocto
我正在打包一个基于 autotools 的上游项目以供 OE/Yocto 使用。
Yocto 将尝试在树外构建项目(与源代码分开)。
这失败得很惨。我已经通过在我的常规桌面上尝试 out-tree-build 来验证这与 OE/Yocto 设置无关。它以同样的方式失败。
如何在 OE/Yocto 中将 autotools 项目与损坏的 out-of-tree 构建集成?
推荐的解决方案是修复构建系统以使用树外构建,但也有一个解决方法:
inherit autotools-brokensep
使用它而不是继承 autotools。
我正在打包一个基于 autotools 的上游项目以供 OE/Yocto 使用。 Yocto 将尝试在树外构建项目(与源代码分开)。 这失败得很惨。我已经通过在我的常规桌面上尝试 out-tree-build 来验证这与 OE/Yocto 设置无关。它以同样的方式失败。
如何在 OE/Yocto 中将 autotools 项目与损坏的 out-of-tree 构建集成?
推荐的解决方案是修复构建系统以使用树外构建,但也有一个解决方法:
inherit autotools-brokensep
使用它而不是继承 autotools。