Quote:
Originally Posted by DiapDealer
Hey Kevin,
Even with a debug build on Linux, I'm just not getting much insight into the Qt libraries themselves. The binary Qt 5 downloads for Linux don't have separate Release/Debug versions of the libraries like the Windows downloads do ... and I can't seem to figure out how to load (or turn on) the extra debugging symbols for Qt5 itself. I may have to resort to using the Windows debugging tools to get a helpful backtrace. I don't look forward to remembering how to do that.
|
In any event, if you do need the debug build of Qt, you can always build it yourself.
Code:
wget http://download.qt-project.org/official_releases/qt/5.3/5.3.2/single/qt-everywhere-opensource-src-5.3.2.tar.gz
tar xzf qt-everywhere-opensource-src-5.3.2.tar.gz
cd qt-everywhere-opensource-src-5.3.2
./configure -confirm-license -opensource -debug \
-prefix /path/to/install \
[other options]
make
make install