QT Guide

Requirements

For creating the QT6 toolchain a complete Yocto build environment is required.

Depending on your module choose the correct guide - if not already set up.

Note

QSXP, QSXM, QS8M, TX8M, TX8P use NXP Yocto BSP Guide

Note

QSRZ, QSMP, TXRZ, TXMP, TX6, TXUL use Mainline Yocto BSP Guide

Build

  1. Setup the Yocto build-directory as described in the Yocto guide for your machine. Use the following values:

  • DISTRO=karo-wayland

  • MACHINE=<desired-machine>

  1. Build the image for your target:

bitbake karo-image-qt6
  1. Program your board using our Flashtools. You can also boot the image from net/tftp.

  2. Build the SDK:

bitbake meta-toolchain-qt6

Installing SDK

To install the previously built SDK on your host, simply run:

<your-build-directory>/tmp/deploy/sdk/<sdk-architechture-depending-install-script-name>.sh

Hint

It is recommended to install every toolchain into a seperate folder inside /opt/

Installing QT Creator

Download the QT Creator offline installation for Linux from https://www.qt.io/offline-installers and execute the .run file. This will install the QT Creator for you.

Setup QT Creator

Now we have to tell QtCreator to use our previously installed SDK.

SDK

Start QT Creator, go to Edit ‣ Preferences and select the Kits section.

Configure Qt Versions (qmake), Compilers and Debuggers as shown in the following screenshots. Of course you have to fit the paths depending on your SDK.

../../_images/qt-versions1.png

QT Versions

../../_images/compilers-21.png

C Compilers

../../_images/compilers-11.png

C++ Compilers

../../_images/debuggers1.png

Debuggers

Go to the CMake section and add cmake executable.

../../_images/cmake1.png

CMake

Device

Note

For the next step it is required that your target has a working ethernet connection to your host.

Tip

To find out the IP of our target, run ip a there.

Go to section Devices and choose Add ‣ Remote Linux Device ‣ Start Wizard. Follow the steps to configure your target.

../../_images/devices1.png

Devices

Now in Kits section, add a Kit with all the previously configured parameters.

../../_images/kits1.png

Complete Kits

Press Apply and close the Options Window.

Hello World

Create a new project using the project wizard on QTCreator start screen clicking + New.

Select e.g. “Qt Quick Application” and go through the steps. Make sure you select the right Kit.

Once created you should be able to run project on your target.

../../_images/run1.png

Run