Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Detect if qt is running a debug build at runtime

Tags:

How can I detect from within a QObject at runtime whether or not the Qt it's linked against is a debug build or release build?

I know about the QT_NO_DEBUG macro, but that is resolved at build time for Qt.

Example 1 of when this would be useful: I have a plugin that acts as a crash handler, providing a backtrace. I only want this plugin to attempt to do all this work if the qt debug symbols are available.

Example 2: I have a command line argument parser written in pyqt. It wants to print program help. How does it find out if QApplication will support the -sync switch or not from within pyqt. If I had info on the build type, I could add or remove -sync easily from the list of arguments the program understands.

like image 686
troy.unrau Avatar asked Jul 30 '12 00:07

troy.unrau


People also ask

What is unclaimed breakpoint in Qt?

An unclaimed breakpoint represents a task to interrupt the debugged program and passes the control to you later. It has two states: pending and implanted . Unclaimed breakpoints are stored as a part of a session and exist independently of whether a program is being debugged or not.


2 Answers

If you just want to test whether you are running a debug or release build of your application, use QT_DEBUG:

#ifdef QT_DEBUG   qDebug() << "Running a debug build"; #else   qDebug() << "Running a release build"; #endif 

Though this obviously uses the pre-processor, rather than checking at runtime. I'm a bit confused as to why you've specified that you want to make this check at runtime, seeing as the decision to build with or without debug capability can only be made prior to compiling...

I'm not aware of any easy way in Qt4 to check whether the Qt library you're linking against has been built with debugging enabled (though I did notice that this looks to be changing in Qt5 with the addition of QLibraryInfo::isDebugBuild()).

like image 143
sam-w Avatar answered Sep 17 '22 05:09

sam-w


Both hints in accepted answer are true. There is one side effect with Qt5 on macOS. By Default, frameworks use a release version of it's library and the result of this method will be always 'false' value.

like image 38
Ľubomír Carik Avatar answered Sep 19 '22 05:09

Ľubomír Carik