OpenEmbedded 中重新编译 QtEmbedded,无示例
我有一台运行 ARM9 的触摸屏计算机。我已经在 OpenEmbedded 工具链下成功为 ARM9 构建了 QtEmbedded SDK 映像(我是该领域的新手)。由于 NAND 的空间限制,我想再次重新构建 QtEmbedded 图像,并提供一些(不是全部)示例。我怎样才能重新编译这个。我已经在 example.pro 中注释掉了示例,但它似乎是从现有包构建图像。我正在使用命令:bitbake -b qt4-embedded-image
请帮忙。
- 尼梅什
I have a touch panel computer running ARM9. I have successfully built a QtEmbedded SDK image under OpenEmbedded toolchain (I am newbie in this area) for ARM9. I'd like to re-build QtEmbedded images again with few examples that it comes (not all) with due to space limitation on NAND. How can I re-compile this. I have commented out examples in examples.pro but it seems it's building images from existing packages. I am using command: bitbake -b qt4-embedded-image
Please help.
- Nimesh
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要重新运行 bitbake 的配置步骤以从 .pro 文件重建 Makefile。您可以通过删除此包的配置标记来完成此操作。只需 rm 这个包的 do_configure 标记并重新运行上面执行的 bitbake 命令即可。
You need to re-run the configure step of the bitbake to rebuild the Makefiles from the .pro files. You can do this by removing the configure stamp for this package. Just rm the do_configure stamp for this package and re-run the bitbake command you did above.