This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

PROCESSOR-SDK-AM62X: Cross compilation with Qt

Part Number: PROCESSOR-SDK-AM62X
Other Parts Discussed in Thread: AM625

Hello team,

Is there any related material (video/document) to cross compile AM625 EVM with Qt ?

  • Hello,

    At the moment, we don't have any video or document but cross compiling is very simple. Here are the steps:

    1. Download the AM625 SDK
    2. Clone a Qt example of your choice
    3. Change directory into the qt example
    4. Run the command "source <psdk_dir>/linux-devkit/environment-setup" (Will configure all the env variables)
    5. Run the command "qmake" followed by "make" (Will compile the app for aarch64 platform)
    6. Copy the example folder to the AM62x Filesystem
    7. On target, you could launch app with weston or without weston (qt_example --platform wayland or qt_example --platform eglfs)

    Regards,
    Krunal

  • Hello ,

    Thankyou for support.

    Following these steps, compilation was successful.