Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F145436330
D27524.1777903350.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
D27524.1777903350.diff
View Options
diff --git a/en_US.ISO8859-1/books/developers-handbook/tools/chapter.xml b/en_US.ISO8859-1/books/developers-handbook/tools/chapter.xml
--- a/en_US.ISO8859-1/books/developers-handbook/tools/chapter.xml
+++ b/en_US.ISO8859-1/books/developers-handbook/tools/chapter.xml
@@ -1655,6 +1655,48 @@
<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 starting with
+ LLDB version 12.0.0. Users of &os; releases containing an
+ earlier LLDB version may wish to 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
Details
Attached
Mime Type
text/plain
Expires
Mon, May 4, 2:02 PM (4 h, 41 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
28554656
Default Alt Text
D27524.1777903350.diff (2 KB)
Attached To
Mode
D27524: Developer's Handbook: add a section on remote debugging via LLDB
Attached
Detach File
Event Timeline
Log In to Comment