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>
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>
_______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits