View Single Post
Old 10-07-2014, 06:17 PM   #123
eschwartz
Ex-Helpdesk Junkie
eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.
 
eschwartz's Avatar
 
Posts: 19,421
Karma: 85400180
Join Date: Nov 2012
Location: The Beaten Path, USA, Roundworld, This Side of Infinity
Device: Kindle Touch fw5.3.7 (Wifi only)
Quote:
Originally Posted by DiapDealer View Post
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
eschwartz is offline