“模板:Qt使用方法”的版本间的差异
来自ARM Wiki
Tangdapeng(讨论 | 贡献) (→Qt 版本支持情况) |
Tangdapeng(讨论 | 贡献) |
||
第63行: | 第63行: | ||
| | | | ||
|} | |} | ||
+ | ==Linux搭建Qt== | ||
+ | ===Debian、Ubuntu=== | ||
+ | *使用apt从官方源中获取 | ||
+ | <syntaxhighlight lang="bash"> | ||
+ | sudo apt-get update | ||
+ | sudo apt-get install qt5-default | ||
+ | sudo apt-get install qtcreator | ||
+ | </syntaxhighlight> | ||
+ | *使用源码编译(不建议自行编译,可能会有编译报错、运行报错的问题) | ||
+ | <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 | ||
+ | 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 | ||
+ | </syntaxhighlight> |
2020年6月9日 (二) 10:51的版本
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