Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: TOC, formatting

This wiki page summarizes the build steps for Qt 5.4.2 and Qwt 6.1.2 libraries as used in the Zynq Base TRD 2015.4.   Zynq Base TRD versions 2015.2 or older use Qt 4.7.3 and Qwt 6.0.1. Please refer to this wiki page for build instructions.


Table of Contents
Table of Contents

Prerequisites

...

Code Block
themeMidnight
bash> export ZYNQ_QT_BUILD=/path/to/qt/build
bash> export ZYNQ_QT_INSTALL=/path/to/qt/install
bash> export PATH=$ZYNQ_QT_INSTALL/bin:$PATH


Cross-Compile Qt5

Qt is a C++ framework for GUI application development. With the release of Qt 5.0, Qt no longer contains its own window system implementation. The Qt Platform Abstraction (QPA) provides multiple platform plugins that are potentially usable on Embedded Linux systems: EGLFS, LinuxFB, DirectFB, Wayland. In this tutorial we configure Qt to use the LinuxFB plugin which is well suited for embedded devices without GPU running Linux. For more information on Qt for embedded Linux see here .

...