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
Marco Bubke
flatpak-qt-creator
Commits
7544e753
Commit
7544e753
authored
Sep 08, 2010
by
Christian Kandeler
Browse files
Maemo: Fix remote debugging via gdbserver.
Also document remote gdbserver adapter's signal.
parent
15fc9396
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/gdb/remotegdbserveradapter.h
View file @
7544e753
...
...
@@ -65,6 +65,14 @@ private:
AbstractGdbProcess
*
gdbProc
()
{
return
&
m_gdbProc
;
}
signals:
/*
* For "external" clients of a debugger run control that need to do
* further setup before the debugger is started (e.g. Maemo).
* Afterwards, handleSetupDone() or handleSetupFailed() must be called
* to continue or abort debugging, respectively.
* This signal is only emitted if the start parameters indicate that
* a server start script should be used, but none is given.
*/
void
requestSetup
();
private:
...
...
src/plugins/qt4projectmanager/qt-maemo/maemodebugsupport.cpp
View file @
7544e753
...
...
@@ -84,6 +84,7 @@ RunControl *MaemoDebugSupport::createDebugRunControl(MaemoRunConfiguration *runC
params
.
debuggerCommand
=
runConfig
->
gdbCmd
();
params
.
remoteChannel
=
devConf
.
server
.
host
+
QLatin1Char
(
':'
)
+
QString
::
number
(
gdbServerPort
(
runConfig
));
params
.
useServerStartScript
=
true
;
params
.
remoteArchitecture
=
QLatin1String
(
"arm"
);
}
params
.
processArgs
=
runConfig
->
arguments
();
...
...
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