ZedBoard Study Notes -- Running the Qt Program

来源:互联网 发布:js正则判断数字 编辑:程序博客网 时间:2024/06/06 03:11

1. 开发环境: VirtualBox 5.1.24 + Ubuntu 16.4

2. 开发板: ZedBoard Rev.C + 7inch Touch Screen

3. 参考文档: 1) http://zedboard.org/support/design  ZedBoard_ALI3_Display_Ubuntu_Tutorial_14_4_02

                    2) http://blog.csdn.net/luotong86/article/details/52597295

步骤: 1 在ubuntu 上安装QT

                apt-get install qt-sdk

           2. 参考文档2),因为linaro 使用 arm-linux-gnueabihf编译的,所以交叉编译器得使用 arm-linux-gnueabihf

             apt-get install arm-linux-gnueabihf-gcc apt-get install arm-linux-gnueabihf-g++

           3. cd ~ and enter the command export CROSS_COMPILE=arm-linux-gnueabihf-

           4. Download https://download.qt.io/archive/qt/4.8/4.8.6/qt-everywhere-opensource-src-4.8.6.tar.gz.

           5. Copy the  qt-everywhere-opensource-src-4.8.6.tar.gz to /opt/qt_src in ubuntu

           6. tar -xvzf qt-everywhere-opensource-src-4.8.6.tar.gz

           7. cd qt-everywhere-opensource-src-4.8.6

           8. ./configure -embedded arm -xplatform qws/linux-arm-gnueabi-g++ -little-endian -opensource -host-little-endian -confirm-license -nomake demos -nomake examples -no-openssl 

          9. make

          10. make install

           11. The library will be installed into default path: /usr/local/Trolltech

          12. copy the Trolltech folder to the same path of embedded linux folder