Imx6 Debian8 系统使用
来自ARM Wiki
Sunxiaolin(讨论 | 贡献)2020年11月17日 (二) 11:04的版本 (创建页面,内容为“==基础信息== *用户密码 <syntaxhighlight lang="bash"> user: root passwd: 0 </syntaxhighlight> ==QT开发== ===使用qtcreator开发qt程序=== 主机PC端环...”)
基础信息
- 用户密码
user: root
passwd: 0
QT开发
使用qtcreator开发qt程序
主机PC端环境为Ubuntu16.04,目标板系统为debian base系统。目标板系统默认使用root用户在终端自动登录,并支持root用户ssh远程登录。目标板系统中移植了qt,路径为/opt/data目录,仅支持linuxfb显示插件。交叉编译工具链
和QT环境解压到PC系统下的/opt/data目录
安装qtcreator
$ sudo apt-get install qtcreator
添加Qt Versions
Tools --> Options --> Build & Run --> Qt Versions --> Add --> 选中qmake路径 --> Apply
添加Compilers
Tools --> Options --> Build & Run --> Compilers --> Add --> GCC -- 选中g++路径 --> Apply
添加Kits
Tools --> Options --> Build & Run --> Kits --> Add --> Apply
打开 analogclock 工程并选择Kits
Welcome --> Open Porject --> 选择工程路径 /opt/data/qt5.5.1/examples/gui/analogclock/analogclock.pro --> Configure Project
编译 analogclock
Build --> Build Project "calculator"
运行 analogclock
将analogclock拷贝到目标板系统下,并参考home/norco/qtset.sh设置qt运行环境变量
$ source home/norco/qtset.sh
$ ./analogclock