IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)

Qt for Linux/X11 - Building from Source

How to configure and build Qt on Linux/X11 platforms.

Article lu   fois.

L'auteur

Liens sociaux

Viadeo Twitter Facebook Share on Google+   

Qt for Linux/X11 - Building from Source

This page describes configuring and building Qt for Linux/X11 from sources. Note that it is typically easier to install the pre-built Qt libraries and tools via the Qt Online Installer. A lot of Linux distributions also provide Qt packages through their package manager. Build Qt from sources, however, if you want to customize Qt further or are using a distribution for which no binary Qt packages (in the right version) are available.

Distribution packagers can find further information on how to package Qt in the packaging recommendations.

Step 1: Getting the Sources

Qt sources can be installed in the Qt Online Installer. Source packages are also available as Git repositories, as archives in the Qt Account (commercial users), and on download.qt.io (open-source users).

If you install the sources through the Qt Online Installer, they will be available in the Qt installation directory, for example $HOME/Qt/6.5.3/Src.

If you downloaded the single source archive, extract it to a directory of your choice:

 
Sélectionnez
cd /tmp
tar xf ~/Downloads/qt-everywhere-src-6.5.3.tar.xz

Step 2: Install Build Requirements

Building Qt requires a build environment with tools, compilers, and development packages.

Build Tools

Tool

Supported Versions

CMake

Version 3.16 and newer (3.21 and newer for -static builds).

Ninja

-

Python

Version 3

configure always uses the Ninja generator and build tool if a ninja executable is available. Ninja is cross-platform, feature-rich, performant, and recommended on all platforms. The use of other generators might work but is not officially supported.

Compilers & Development Packages

The following compilers and configurations are supported in Qt 6.5:

Distribution

Architecture

Compiler

Notes

Red Hat 8.4

x86_64

GCC 10 (toolset)

 

Red Hat 9.0

x86_64

GCC 11

 

openSUSE 15.4

x86_64

GCC 9

 

SUSE Linux Enterprise Server 15 SP4

x86_64

GCC 10

 

Ubuntu 22.04

x86_64

GCC as provided by Canonical, GCC 11.x

 

Other compilers and configurations might work but are not actively tested.

Qt also relies on the availability of various libraries and development packages, which are typically installed by the package manager of the respective resolution. See Qt for X11 Requirements for the details.

Step 3: Build the Qt Libraries and Tools

To configure your build, create a build directory and run the ./configure script in this directory:

 
Sélectionnez
mkdir -p ~/dev/qt-build
cd ~/dev/qt-build
/tmp/qt-everywhere-src-6.5.3/configure

By default, Qt is configured for installation in the /usr/local/Qt-6.5.3 directory. This can be changed by using the -prefix option. See the list of configure options to tweak further.

Did configure run successfully? Then proceed with building the libraries and tools:

 
Sélectionnez
cmake --build . --parallel

After building, you need to install the libraries and tools in the appropriate place (unless you enabled a developer build):

 
Sélectionnez
cmake --install .

Note that this might require root access.

Step 4: Using Qt

After Qt is installed, you can start building applications with it.

If you work from the command line, consider adding the Qt tools to your default PATH. This is done as follows:

In .profile (if your shell is bash, ksh, zsh or sh), add the following lines:

 
Sélectionnez
PATH=/usr/local/Qt-6.5.3/bin:$PATH
export PATH

In .login (if your shell is csh or tcsh), add the following line:

 
Sélectionnez
setenv PATH /usr/local/Qt-6.5.3/bin:$PATH

If you plan to use Qt from an IDE, you need to register the Qt version explicitly there. For Qt Creator, see Qt Creator: Adding Qt Versions.

Vous avez aimé ce tutoriel ? Alors partagez-le en cliquant sur les boutons suivants : Viadeo Twitter Facebook Share on Google+