zoukankan      html  css  js  c++  java
  • Building and setting up QT environment for BeagleBone

    There are too few information available on how to easily setup QT environment for building Beaglebone applications (command line or GUI). In this tutorial we will compile QT and setup the environment from scratch.

    1. My environment

    • Host: Ubuntu 12.10 32bit (VMplayer)
    • Target: BeagleBone Black running Angstrom
    • QT: 4.8.5

    2. Setup Angstrom cross-compile toolchain for Linux

    3. Download and un-tar QT

    $ wget http://download.qt-project.org/official_releases/qt/4.8/4.8.5/qt-everywhere-opensource-src-4.8.5.tar.gz
    $ tar -xzf qt-everywhere-opensource-src-4.8.5.tar.gz
    $ mv qt-everywhere-opensource-src-4.8.5 qt-4.8.5-beagle

     4. Create qmake.conf

    $ cd qt-4.8.5-beagle
    $ mkdir ./mkspecs/qws/linux-am335x-g++ 
    $ cp ./mkspecs/qws/linux-arm-g++/qplatformdefs.h ./mkspecs/qws/linux-am335x-g++ 
    $ touch ./mkspecs/qws/linux-am335x-g++/qmake.conf

    Add the following to qmake.conf with your favorite editor:

     5. Configure QT embedded

     6. Build and install

    $ make -j 4
    $ sudo make install

    “-j 4″ will run the long build process reusing 4 CPU cores, you can change to your own CPU cores amount.

    7. Install Qt SDK (lib) we built previously on your board

    • Make sure you beaglebone is connected to your host
    • ssh to your beagle (ssh root@192.168.7.2)
    • Create dir structure from your prefix:
    • Copy lib from your host to beagle:
    • Add the lib directory to path by editing /etc/profile and adding:

    8. Download, install and configure QT Creator

    • I suggest installing QT Creator using regular installer:
    • Download qt-creator-linux-x86-opensource-2.8.0.run for x86 or qt-creator-linux-x86_64-opensource-2.8.0.run for 64bit
    • Follow installation Wizard
    • Run Angstrom toolchain environment setup:
    • Open Qt Creator and
    • Configure Qt version
    • Go to Tools->Options->Build & Run->Qt Versions and click Add
    • Select qmake.conf from /opt/qt/bin
    • Click Ok
    • Configure target device connection
    • Go to Tools->Options->Devices
    • Click Add and select Generic Linux Device
    • Add IP 192.168.7.2, User: root
    • Set name to “Beaglebone”
    • Click Ok
    • Configure Compiler
    • Go to Tools->Options->Build & Run->Compilers and click Add->GCC
    • Select compiler path: /usr/local/angstrom/arm/bin/arm-angstrom-linux-gnueabi-g++
    • Click Ok
    • Configure Kit
    • Go to Tools->Options->Build & Run->Kits and click Add
    • Call new kit Beaglebone
    • Select device type: “Generic Linux Device”
    • Select the device you previously created
    • Select compiler you created
    • Select Qt version you created
    • Select GDK path as /usr/local/angstrom/arm/bin/arm-angstrom-linux-gnueabi-gdk
    • Click Ok

     9. Build Qt application

    • Create new project (File->New project->Qt Project->Qt Console application)
    • Edit your project (.pro) file
    • Add the following after “TARGET=…” line:
    • Go to Projects -> Run, you should see on “Files to deploy” table your “target” settings
    • Now you are ready to build and deploy you project on your target board
    • The following example application should print Hello world inside your console:

       

    Good luck!

    Meir Tseitlin

    This entry was posted in BeagleboneLinux EmbeddedQT by Miro. Bookmark the permalink.

    71 THOUGHTS ON “BUILDING AND SETTING UP QT ENVIRONMENT FOR BEAGLEBONE

  • 相关阅读:
    【Python】【元组】
    【Python】【列表】
    【Python】【序列】通用序列操作
    【Python】【数据结构】
    【Python】【字符串】常用方法
    【Python】【字符串】符号、对齐和用字符填充
    【Python】【字符串】替换字段
    @装饰器
    实现单点登录SSO
    supervisor 管理启动项目
  • 原文地址:https://www.cnblogs.com/dolphi/p/3613068.html
Copyright © 2011-2022 走看看