如何为PowerPC交叉编译Qt X11?
我一直在尝试为 PowerPC 交叉编译 Qt X11 一段时间,但一直遇到各种问题。
根据我提供的 Qt 支持的信息,需要做的就是:
- 创建一个新的 mkspec
- 复制 mkspec/ 中的现有目录 我使用了 linux-g++ 并修改了它。
- 修改 qmake.conf 以使用您的工具链、库和包含
运行以下配置命令:
./configure -arch <你的拱门> -xplatform <您的 mkspec> -prefix <您想要安装 Qt 的位置> <其他选项>
配置完成后,运行
make
,然后运行make install
。您会发现 Qt 安装在您在-prefix
选项中指定的目录中。
这样做遇到了各种各样的问题。
I have been trying to get Qt X11 cross compiled for PowerPC for a while now and kept having various problems.
From the information given my Qt support, all one needs to do is:
- Create a new mkspec
- Copy an existing directory in
mkspec/
I used linux-g++ and modified it. - Modify qmake.conf to use your toolchain, libraries and includes
Run the following configure command:
./configure -arch <your arch> -xplatform <your mkspec> -prefix <where you want Qt installed> <other options>
After configure is done, run
make
thenmake install
. You'll find Qt installed in the directory you specified in the-prefix
option.
Had all kinds of problems doing this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我的解决方案:
mkspecs/linux-g++
复制到mkspecs/linux-g++-
mkspecs/linux-g++/qmake.conf
代码> 如下例所示。 阅读示例文件中的注释了解具体细节qplatformdefs.h
,尽管您可能会针对您的架构make
和make install
moc
、uic
等已经为你的主机编译好了,所以它们会生成相应的代码。/libs
复制到目标lib
文件夹,或者您可以将其放入其他文件夹中,然后设置 LD_LIBRARY_PATH 以包含 Qtlib
文件夹。示例 qmake.conf:
更新:
该解决方案适用于“独立”编译。如果您需要为 Angstrom、OpenEmbedded、Android、OpenWRT 等构建 Qt X11,则必须使用它们各自的构建系统才能正确编译。例如,对于 OpenEmbedded 目标(即 Angstrom),您必须编写 BitBake 配方。
出现此问题是由于需要支持遗留系统。使用嵌入式 Qt 不是一个选择。对于新项目,我强烈建议使用嵌入式 Qt。
My solution:
mkspecs/linux-g++
tomkspecs/linux-g++-<my arch>
mkspecs/linux-g++/qmake.conf
as in the example below. Read the comments in the example file for specificsqplatformdefs.h
, though you might for your architecturemake
andmake install
moc
,uic
, etc. have been compiled for your host, so they will generate code accordingly./libs
from where you install Qt to your targetslib
folder or you can put it into some other folder and set your LD_LIBRARY_PATH to include the Qtlib
folder.Example qmake.conf:
UPDATE:
This solution will work for "stand-alone" compilation. If you need to build Qt X11 for Angstrom, OpenEmbedded, Android, OpenWRT, etc. you'll have to use their respective build systems for proper compilation. For example, for OpenEmbedded targets (i.e. Angstrom), you'll have to write a BitBake recipe.
This problem occurred due to a need for supporting legacy systems. Using Embedded Qt was not an option. For new projects, I would strongly recommend the use of Embedded Qt.