Andres Salas
Andres Salas

Reputation: 175

Stepping into Qt sources in Qt Creator (Fedora Linux) (Not built from source)

I'm attempting to step into Qt Source code to understand a particular warning I'm receiving. A lot of questions come close to answering this, most particularly this one:

Stepping into Qt sources in Qt Creator (in Ubuntu Linux)

Unfortunately this answer is for Ubuntu, and I have been unable to find the equivalent repository items mentioned in the answer in dnf on Fedora 29.

The answers to this (Debug into Qt sources) question also seem relevant, except that:

Upvotes: 0

Views: 404

Answers (1)

Nikos C.
Nikos C.

Reputation: 51840

Download the official Qt online installer and select and install the Qt version you want to your home directory. Also make sure to install the source code of that Qt version. This will also install the official binary release of Qt Creator.

Using the official installer should give you an environment where you can debug and step into Qt code. The official Creator binary will also be set up automatically to work with the official Qt binaries by adding the necessary kits.

Upvotes: 1

Related Questions