构建和使用 Qt Embedded 的经验
我目前正在尝试在 ARM 架构的 Ubuntu 机器上编译和构建用于嵌入式 Linux 的 QT。 到目前为止,我在尝试制作时遇到了很多错误。 最大的一个是 2000 行 C++ 函数,它导致了编译器错误。 其他人对此有什么经验?您是如何解决这个问题的?
I am currently trying to compile and build QT for Embedded Linux on an Ubuntu box for ARM architecture. So far, I have run into MANY errors while trying to MAKE. The biggest one being a 2000 line C++ function which caused a compiler error. What are other peoples experiences with this and how did you fix it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我的经验一直是有利的,因为:
您必须遵循 Qt 安装说明中的每一条说明,无一例外。 每次我遇到编译错误时,都是因为我试图快速完成,而不是阅读该特定平台的附加文档。
我会查看说明 - 可能需要先完成一些小事情,这很可能会消除您的错误。
My experience has always been favorable, given:
You must follow every single instruction in the installation instructions for Qt, without exception. Every time I've run into compilation errors, it's been because I tried to just do it quickly, instead of reading the attached documentation for that specific platform.
I'd review the instructions - there's probably some minor thing that needs to be done first, which will most likely eliminate your errors.