如何制作 do_configure 的 bitbake 打印选项

how to make bitbake print options of do_configure

我在使用带有 bitbake 的 openembedded 为 beaglebone 交叉编译 Qt5 时遇到问题。我认为在步骤 do_configure 中并非所有内容都从我的 *.bbappend 传递并且没有安装平台插件(我需要 'linuxfb')。

我的问题是:如何使 bitbake 打印它传递给 ./configure 的参数列表?

有几种方法可以获取该信息,我建议查看 recipe work directory

  • temp/log.do_configure 包含配置任务日志,其中应列出准确的 ./configure-command
  • build/ 包含项目自己的构建系统工件
如果您想知道最终的变量值是什么,

bitbake -e <recipe> | grep <VARIABLE> 非常有用(如果您正在修改 packageconfig,请检查例如 PACKAGECONFIG 和 PACKAGECONFIG_CONFARGS 值)。