Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Tobias Hunger
qt-creator
Commits
13212eef
Commit
13212eef
authored
Oct 05, 2009
by
hjk
Browse files
debugger: work around Apple gdb-1344 problem
parent
75529d87
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/gdb/gdbengine.cpp
View file @
13212eef
...
...
@@ -4081,7 +4081,11 @@ void GdbEngine::handleInferiorPrepared()
//postCommand(_("set print pretty on"));
//postCommand(_("set confirm off"));
//postCommand(_("set pagination off"));
postCommand
(
_
(
"set print inferior-events 1"
));
// The following does not work with 6.3.50-20050815 (Apple version gdb-1344)
// (Mac OS 10.6), but does so for gdb-966 (10.5):
//postCommand(_("set print inferior-events 1"));
postCommand
(
_
(
"set breakpoint pending on"
));
postCommand
(
_
(
"set print elements 10000"
));
postCommand
(
_
(
"-data-list-register-names"
),
CB
(
handleRegisterListNames
));
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment