即使用于为 Qt 4.8.4 构建调试助手的 Qt Creator 2.7.0 中的日志显示成功,并且在 Preferences > Debugger > Locals & Expressions 下选中了“Use Debugging Helper”,我仍然无法QString
正确检查 s等值调试。正在调试的应用程序的控制台窗口中没有显示错误。有任何想法吗?
问问题
688 次
1 回答
0
我在最新的 OSX 上使用自建 Qt4.8.4 的 QtC2.7.0(以及 2.6)也遇到了同样的问题:我自己构建了调试器助手,完成了以下操作。
copy this to the head of the dumper.pro
macx:QMAKE_CC = gcc
macx:QMAKE_CXX = g++
macx:QMAKE_LINK = g++
run the following commands
2761 cd "/Users/Shared/current_qt/qtc-debugging-helper/"
2766 /Users/Shared/current_qt/bin/qmake -spec macx-g++42 dumper.pro -nocache CONFIG+=x86_64
2767 make all -k
于 2013-04-18T14:44:52.740 回答