Difference between revisions of "Qt6 Interface"

From Lazarus wiki
Jump to navigationJump to search
Line 16: Line 16:
  
 
==Troubleshooting on running the Linux app==
 
==Troubleshooting on running the Linux app==
If you compile the app OK, but cannot run the binary, try to run it again from the Terminal. You may see errors about missing .so files. To fix it, unpack libQt6Pas.so* files from [https://github.com/davidbannon/libqt6pas/ GitHub page] to e.g. ~/qt6pas. Then open file "~/.bashrc" and add there:
+
If you compile the app OK, but cannot run the binary, try to run it again from the Terminal. You may see errors about missing .so files. To fix it, unpack libQt6Pas.so* files from [https://github.com/davidbannon/libqt6pas/ GitHub page] to e.g. ~/qt6pas. Then open file "~/.bashrc" (I assume OS uses Bash) and add there:
  
 
  LD_LIBRARY_PATH=/home/user/qt6pas
 
  LD_LIBRARY_PATH=/home/user/qt6pas

Revision as of 12:48, 18 November 2022

Template:Qt6 Interface

Qt logo 2013.svg

This article applies to Qt6 widgetset only.

See also: Multiplatform Programming Guide

Introduction

This interface is based on Qt 6 (Qt 6.2.3 LTS). For documentation, fixes and download, go to Qt Project (Installers at download 6.2.3). Lazarus with Qt6 interface (qt6-lcl) can be used on Windows 32/64, Linux x32/x64/arm, macOS x64 (Cocoa). Qt6 widgetsets will be available in Lazarus from 2.4 stable release. Currently you can use it from trunk.

Most current Linux distros have a suitable Qt6 in their standard repositories, but till lazarus 2.4 release you must build libQt6Pas on your own, or download pre-built (all care, no responsibility) packages for some platforms from 'Releases' of this GitHub page.

Troubleshooting on compiling on Linux

If you don't download libQt6Pas library, FPC will give the error on compiling your Qt6 app, something about "cannot link to library Qt6Pas". This means it cannot find the "libQt6Pas.so" file. So you need to unpack the original files from GitHub and make the sym-link "libQt6Pas.so" in the folder of "fpc" binary.

Then FPC again can show the compilation error, but now about the concrete library name, something like "cannot find libQt6Pas.so.1.0". If you see this, just create the additional sym-link, again in the fodler of "fpc" binary.

Then FPC must go over libQt6Pas step, but it can fail and tell it cannot find Qt6 libraries. If you see such errors, just install Qt6 (version 6.2 LTS) from your OS distro packages.

Troubleshooting on running the Linux app

If you compile the app OK, but cannot run the binary, try to run it again from the Terminal. You may see errors about missing .so files. To fix it, unpack libQt6Pas.so* files from GitHub page to e.g. ~/qt6pas. Then open file "~/.bashrc" (I assume OS uses Bash) and add there:

LD_LIBRARY_PATH=/home/user/qt6pas
export LD_LIBRARY_PATH

Create additional sym-link(s) there too, if the error tells about concrete filename like "libQt6Pas.so.1.0.2".

Do log-off and log-on. Now Qt6 binary must find all .so files.