“模板:Qt使用方法”的版本间的差异
来自ARM Wiki
Tangdapeng(讨论 | 贡献) |
Tangdapeng(讨论 | 贡献) (→Linux搭建Qt) |
||
第65行: | 第65行: | ||
==Linux搭建Qt== | ==Linux搭建Qt== | ||
===Debian、Ubuntu=== | ===Debian、Ubuntu=== | ||
− | + | ====使用apt从官方源中获取==== | |
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
sudo apt-get update | sudo apt-get update | ||
第71行: | 第71行: | ||
sudo apt-get install qtcreator | sudo apt-get install qtcreator | ||
</syntaxhighlight> | </syntaxhighlight> | ||
− | * | + | ====使用源码编译==== |
+ | *不建议自行编译,可能会有编译报错、运行报错的问题 | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
wget http://mirror.bit.edu.cn/qtproject/archive/qt/5.9/5.9.3/single/qt-everywhere-opensource-src-5.9.3.tar.xz | wget http://mirror.bit.edu.cn/qtproject/archive/qt/5.9/5.9.3/single/qt-everywhere-opensource-src-5.9.3.tar.xz | ||
第80行: | 第81行: | ||
make install | make install | ||
</syntaxhighlight> | </syntaxhighlight> | ||
+ | *安装路径为-prefix参数后面的文件路径,还需要配置环境变量 | ||
+ | ===Yocto、Buildroot=== | ||
+ | *系统中已经内建Qt,支持的版本如上 |
2020年6月9日 (二) 11:01的版本
Qt 版本支持情况
目前各平台支持的Qt版本如下:
CPU | Debian 7 | Debian 8 | Debian 9 | Ubuntu12.04 | Ubuntu14.04 | Ubuntu16.04 | Yocto | BuildRoot |
RK3399 | ||||||||
RK3288 | ||||||||
i.Mx6 | Qt 5.5.1 | Qt 5.2.1 | Qt 5.6.1 | |||||
i.Mx8 | ||||||||
RK1808 |
Linux搭建Qt
Debian、Ubuntu
使用apt从官方源中获取
sudo apt-get update
sudo apt-get install qt5-default
sudo apt-get install qtcreator
使用源码编译
- 不建议自行编译,可能会有编译报错、运行报错的问题
wget http://mirror.bit.edu.cn/qtproject/archive/qt/5.9/5.9.3/single/qt-everywhere-opensource-src-5.9.3.tar.xz
xz -d qt-everywhere-opensource-src-5.9.3.tar.xz
tar xvf qt-everywhere-opensource-src-5.9.3.tar
./configure -confirm-license -opensource -release -make libs -linuxfb -xcb -pch -platform linux-aarch64-gnu-g++ -make examples -nomake tools -nomake tests -prefix /usr/lib/aarch64-linux-gnu/qt5
make -j8
make install
- 安装路径为-prefix参数后面的文件路径,还需要配置环境变量
Yocto、Buildroot
- 系统中已经内建Qt,支持的版本如上