这里,呈现一些有用提示,以帮助您调试基于 Qt 的软件。
当 configuring Qt for installation , it is possible to ensure that it is built to include debug symbols that can make it easier to track bugs in applications and libraries. However, on some platforms, building Qt in debug mode will cause applications to be larger than desirable.
The basic stuff you need to know about debug libraries and frameworks is found at developer.apple.com in: Apple 技术注意事项 TN2124 .
When you build Qt, frameworks are built by default, and inside the framework you will find both a release and a debug version (e.g.,
QtCore
and QtCore_debug). If you pass the
-no-framework
flag when you build Qt, two dylibs are built for each Qt library (e.g., libQtCore.4.dylib and libQtCore_debug.4.dylib).
What happens when you link depends on whether you use frameworks or not. We don't see a compelling reason to recommend one over the other.
Since the release and debug libraries are inside the framework, the app is simply linked against the framework. Then when you run in the debugger, you will get either the release version or the debug version, depending on whether you set
DYLD_IMAGE_SUFFIX
. If you don't set it, you get the release version by default (i.e., non _debug). If you set
DYLD_IMAGE_SUFFIX=_debug
, you get the debug version.
When you tell qmake to generate a Makefile with the debug config, it will link against the _debug version of the libraries and generate debug symbols for the app. Running this program in GDB will then work like running GDB on other platforms, and you will be able to trace inside Qt.
The amount of space taken up by debug symbols generated by GCC can be excessively large. However, with the release of Xcode 2.3 it is now possible to use Dwarf symbols which take up a significantly smaller amount of space. To enable this feature when configuring Qt, pass the
-dwarf2
option to the configure script.
This is not enabled by default because previous versions of Xcode will not work with the compiler flag used to implement this feature. Mac OS X 10.5 will use dwarf-2 symbols by default.
dwarf-2 symbols contain references to source code, so the size of the final debug application should compare favorably to a release build.
When you run a Qt application, you can specify several command-line options that can help with debugging. These are recognized by QApplication .
| 选项 | 描述 |
|---|---|
-nograb
|
The application should never grab
the mouse
or
the keyboard
. This option is set by default when the program is running in the
gdb
debugger under Linux.
|
-dograb
|
忽略任何隐式 (或明确)
-nograb
.
-dograb
wins over
-nograb
even when
-nograb
is last on the command line.
|
-sync
|
Runs the application in X synchronous mode. Synchronous mode forces the X server to perform each X client request immediately and not use buffer optimization. It makes the program easier to debug and often much slower. The
-sync
option is only valid for the X11 version of Qt.
|
Qt includes four global functions for writing out warning and debug text. You can use them for the following purposes:
若包括 <QtDebug> 头文件,
qDebug()
function can also be used as an output stream. For example:
qDebug() << "Widget" << widget << "at position" << widget->pos();
The Qt implementation of these functions prints the text to the
stderr
output under Unix/X11 and Mac OS X. With Windows, if it is a console application, the text is sent to console; otherwise, it is sent to the debugger. You can take over these functions by installing a message handler using
qInstallMsgHandler
().
若
QT_FATAL_WARNINGS
环境变量有设置,
qWarning
() exits after printing the warning message. This makes it easy to obtain a backtrace in the debugger.
Both
qDebug
() 和
qWarning
() are debugging tools. They can be compiled away by defining
QT_NO_DEBUG_OUTPUT
and
QT_NO_WARNING_OUTPUT
在编译期间。
调试函数 QObject::dumpObjectTree () 和 QObject::dumpObjectInfo () are often useful when an application looks or acts strangely. More useful if you use 对象名称 than not, but often useful even without names.
You can implement the stream operator used by
qDebug
() to provide debugging support for your classes. The class that implements the stream is
QDebug
. The functions you need to know about in
QDebug
are
space()
and
nospace()
. They both return a debug stream; the difference between them is whether a space is inserted between each item. Here is an example for a class that represents a 2D coordinate.
QDebug operator<<(QDebug dbg, const Coordinate &c) { dbg.nospace() << "(" << c.x() << ", " << c.y() << ")"; return dbg.space(); }
Integration of custom types with Qt's meta-object system is covered in more depth in the 创建自定义 Qt 类型 文档。
头文件
<QtGlobal>
包含了一些调试宏和
#define
。
3 个重要宏是:
cond
is a boolean expression, writes the warning "ASSERT: '
cond
' in file xyz.cpp, line 234" and exits if
cond
为 false。
cond
is a boolean expression,
where
a location, and
what
a message, writes the warning: "ASSERT failure in
where
: '
what
', file xyz.cpp, line 234" and exits if
cond
为 false。
ptr
is a pointer. Writes the warning "In file xyz.cpp, line 234: Out of memory" and exits if
ptr
为 0。
这些宏很有用,为检测程序错误,如像这样:
char *alloc(int size) { Q_ASSERT(size > 0); char *ptr = new char[size]; Q_CHECK_PTR(ptr); return ptr; }
Q_ASSERT
(),
Q_ASSERT_X
(),和
Q_CHECK_PTR
() expand to nothing if
QT_NO_DEBUG
is defined during compilation. For this reason, the arguments to these macro should not have any side-effects. Here is an incorrect usage of
Q_CHECK_PTR
():
char *alloc(int size) { char *ptr; Q_CHECK_PTR(ptr = new char[size]); // WRONG return ptr; }
If this code is compiled with
QT_NO_DEBUG
defined, the code in the
Q_CHECK_PTR
() expression is not executed and
alloc
returns an unitialized pointer.
The Qt library contains hundreds of internal checks that will print warning messages when a programming error is detected. We therefore recommend that you use a debug version of Qt when developing Qt-based software.
There is one bug that is so common that it deserves mention here: If you include the
Q_OBJECT
macro in a class declaration and run
the meta-object compiler
(
moc
), but forget to link the
moc
-generated object code into your executable, you will get very confusing error messages. Any link error complaining about a lack of
vtbl
,
_vtbl
,
__vtbl
or similar is likely to be a result of this problem.