[Lldb-commits] [PATCH] D61483: [www] list command: lldb run <args>
Konrad Kleine via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Fri May 3 03:05:39 PDT 2019
kkleine created this revision.
Herald added a project: LLDB.
Herald added a subscriber: lldb-commits.
kwk edited the summary of this revision.
kkleine updated this revision to Diff 197943.
kkleine added a comment.
Amend previous commit with copy paste error.
The `run` command is only an abbreviation for the more verbose `process
launch -- <args>` but it works just as with GDB and therefore should be
mentioned in the GDB to LLDB command map.
Here's the help documentation for the `run` command in lldb which gives
proof:
(lldb) help run
Launch the executable in the debugger.
Syntax: run [<run-args>]
Command Options Usage:
run [<run-args>]
'run' is an abbreviation for 'process launch -c /bin/sh --'
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D61483
Files:
lldb/www/lldb-gdb.html
Index: lldb/www/lldb-gdb.html
===================================================================
--- lldb/www/lldb-gdb.html
+++ lldb/www/lldb-gdb.html
@@ -58,6 +58,7 @@
<b>(gdb)</b> r <args>
</td>
<td class="content">
+ <b>(lldb)</b> run <args><br>
<b>(lldb)</b> process launch -- <args><br>
<b>(lldb)</b> r <args>
</td>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D61483.197943.patch
Type: text/x-patch
Size: 535 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20190503/8e246b59/attachment.bin>
More information about the lldb-commits
mailing list