Page MenuHomeFreeBSD

D27524.id80689.diff
No OneTemporary

D27524.id80689.diff

Index: en_US.ISO8859-1/books/developers-handbook/tools/chapter.xml
===================================================================
--- en_US.ISO8859-1/books/developers-handbook/tools/chapter.xml
+++ en_US.ISO8859-1/books/developers-handbook/tools/chapter.xml
@@ -1655,6 +1655,47 @@
<userinput>expr PauseMode = 0</userinput> and wait
for the <function>sleep()</function> call to return.</para>
</sect3>
+
+ <sect3>
+ <title>Remote Debugging Using LLDB</title>
+
+ <note>
+ <para>The described functionality is available only
+ in not-yet-released 12.0.0 version of LLDB. Users wishing
+ to test it early can use the snapshot available in
+ <link xlink:href="&url.books.handbook;/ports-using.html">
+ ports or packages</link>, as
+ <package>devel/llvm-devel</package>.</para>
+ </note>
+
+ <para>Starting with LLDB 12.0.0, remote debugging is supported
+ on &os;. This means that <command>lldb-server</command>
+ can be started to debug a program on one host, while
+ the interactive <command>lldb</command> client connects
+ to it from another one.</para>
+
+ <para>To launch a new process to be debugged remotely, run
+ <command>lldb-server</command> on the remote server
+ by typing</para>
+
+ <screen>&prompt.user; <userinput>lldb-server g <replaceable>host:port</replaceable> -- <replaceable>progname</replaceable></userinput></screen>
+
+ <para>The process will be stopped immediately after launching,
+ and <command>lldb-server</command> will wait for the client
+ to connect.</para>
+
+ <para>Start <command>lldb</command> locally and type
+ the following command to connect to the remote
+ server:</para>
+
+ <screen>(lldb) <userinput>gdb-remote <replaceable>host:port</replaceable></userinput></screen>
+
+ <para><command>lldb-server</command> can also attach to
+ a running process. To do that, type the following
+ on the remote server:</para>
+
+ <screen>&prompt.user; <userinput>lldb-server g <replaceable>host:port</replaceable> --attach <replaceable>pid-or-name</replaceable></userinput></screen>
+ </sect3>
</sect2>
<sect2>

File Metadata

Mime Type
text/plain
Expires
Thu, Jan 23, 7:29 PM (1 h, 12 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
16062055
Default Alt Text
D27524.id80689.diff (2 KB)

Event Timeline