Skip to content
GitLab
Menu
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
15c7e5b3
Commit
15c7e5b3
authored
Sep 02, 2010
by
hjk
Browse files
debugger: read the user init file after the python dumpers
parent
73229006
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/gdb/gdbengine.cpp
View file @
15c7e5b3
...
@@ -4070,6 +4070,8 @@ bool GdbEngine::startGdb(const QStringList &args, const QString &gdb, const QStr
...
@@ -4070,6 +4070,8 @@ bool GdbEngine::startGdb(const QStringList &args, const QString &gdb, const QStr
"dyld
\"
.*CarbonDataFormatters.*
\"
all"
);
"dyld
\"
.*CarbonDataFormatters.*
\"
all"
);
}
}
loadPythonDumpers
();
QString
scriptFileName
=
theDebuggerStringSetting
(
GdbScriptFile
);
QString
scriptFileName
=
theDebuggerStringSetting
(
GdbScriptFile
);
if
(
!
scriptFileName
.
isEmpty
())
{
if
(
!
scriptFileName
.
isEmpty
())
{
if
(
QFileInfo
(
scriptFileName
).
isReadable
())
{
if
(
QFileInfo
(
scriptFileName
).
isReadable
())
{
...
@@ -4083,7 +4085,7 @@ bool GdbEngine::startGdb(const QStringList &args, const QString &gdb, const QStr
...
@@ -4083,7 +4085,7 @@ bool GdbEngine::startGdb(const QStringList &args, const QString &gdb, const QStr
).
arg
(
scriptFileName
));
).
arg
(
scriptFileName
));
}
}
}
}
loadPythonDumpers
();
return
true
;
return
true
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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