Missing arch linux debug symbols
-
Hey am new here, if am right the debug symbols of qt are missing. am on cachyos (arch linux) using clang and gdb. lldb didn't work. is there some package I can install to get the debug symbols for qt6 runtime or do I have to build it myself and if so any guide to build it and make qt creator use it. thanks! -
I ended up cloning the latest version from github:
git clone https://github.com/qt/qtbase
then running cmake install with the cmake variables I need like vulkan -
How did you install the Qt6 libs? Through the online installer or your distro? Your distro for sure provides debug symbols in a separate package. The online installer also provides them ('Qt Debug Information Files')
-
How did you install the Qt6 libs? Through the online installer or your distro? Your distro for sure provides debug symbols in a separate package. The online installer also provides them ('Qt Debug Information Files')
@Christian-Ehrlicher through pacman, they came installed with KDE tho
-
Then you can also the debug symbols from there
-
Then you can also the debug symbols from there
@Christian-Ehrlicher I couldn't find them tho
-
Hi,
Did you follow this Arch Wiki article ?
-
I ended up cloning the latest version from github:
git clone https://github.com/qt/qtbase
then running cmake install with the cmake variables I need like vulkan -