HTML |
---|
<! Remove the border >
<style> .toc-macro {border: none !important;} </style>
<! Transparent background (no color) >
<style> .toc-macro {background: transparent !important;} </style>
<! To make a ToC Font Size bigger. Default font-size: 15px. Default line-height: 1.6 >
<style> .toc-item-body {font-size: 18px !important;} </style> |
Table of Contents |
---|
This page is an an example for RZ/G2L. It is based on using VLP 3.0.6.
Qt 5.15.2 can run on various backends. The EGLFS and Wayland backends are widely used. Here, we will talk about how to build and integrate Qt 5.15.2 with EGLFS and Wayland backends support based on VLP 3.0.6.
The default Yocto SDK of VLP 3.0.6 can only support the Qt with Wayland backend building. So the patch for the Qt 5.6.3(Qt version of VLP 3.0.6) recipe must be applied.
...
Note: The Qt 5.6.3 with EGLFS backend support is ready. If you only need Qt 5.6.3, you can skip the following steps.
2.1) Get the Qt source code
# cd to any directory under ubuntu
cd <work-dir>
# download Qt 5.15.2 source code
wget https://download.qt.io/archive/qt/5.15/5.15.2/single/qt-everywhere-src-5.15.2.tar.xz
# decompress
tar -xvf qt-everywhere-src-5.15.2.tar.xz
...
If everything is OK, you will get the built out binary Qt 5.15.2 in gzip file: qt-5.15.2-eglfs-wayland-build.tar.gz. The build process may take several hours.
It will coexist with Qt 5.6.3.
...