diff options
author | hjk <hjk121@nokiamail.com> | 2013-06-06 14:49:55 +0200 |
---|---|---|
committer | hjk <hjk121@nokiamail.com> | 2013-06-06 14:58:32 +0200 |
commit | 34261e03cb8419f5cf82456dbba2f17e525dd1b6 (patch) | |
tree | 43d3117dfecb4dcf77b7dab6cff9f99b76833afc /doc/src/debugger/creator-debugger.qdoc | |
parent | e2a727c4505c76edb896471e17fe915ba7864239 (diff) | |
download | qt-creator-34261e03cb8419f5cf82456dbba2f17e525dd1b6.tar.gz |
Doc: Update examples on how to start debugging from the command line
Task-number: QTCREATORBUG-9484
Change-Id: Ic5da00c48eb185dc3cd842812e7c36cfefbb6776
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
Reviewed-by: Leena Miettinen <riitta-leena.miettinen@digia.com>
Diffstat (limited to 'doc/src/debugger/creator-debugger.qdoc')
-rw-r--r-- | doc/src/debugger/creator-debugger.qdoc | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/doc/src/debugger/creator-debugger.qdoc b/doc/src/debugger/creator-debugger.qdoc index 593d368f31..d322ac3c33 100644 --- a/doc/src/debugger/creator-debugger.qdoc +++ b/doc/src/debugger/creator-debugger.qdoc @@ -726,15 +726,17 @@ attach it to a running process, specify the process ID as a parameter for the \c {-debug} option. To examine a core file, specify the file name. \QC executes all the necessary steps, such as searching for - the binary that belongs to a core file. + the binary that belongs to a core file. To connect to a debug server, + specify the server location and port number. For example: \list \li \c {C:\qtcreator\bin>qtcreator -debug 2000} - - \li \c {C:\qtcreator\bin>qtcreator -debug core.2000} + \li \c {C:\qtcreator\bin>qtcreator -debug core=core.2000} + \li \c {C:\qtcreator\bin>qtcreator -debug some.exe,core=core} + \li \c {C:\qtcreator\bin>qtcreator -debug server=some.dot.com:4251} \endlist |