[Lldb-commits] [lldb] [lldb] add command start (PR #67019)

via lldb-commits lldb-commits at lists.llvm.org
Thu Sep 21 09:56:15 PDT 2023


https://github.com/jimingham requested changes to this pull request.

Half of this command is just `process launch --stop-at-entry`.  If you wanted to can the "break at main" part, then add a --stop-at-main to process launch.  And if you want a "start" command, the lldb way to do that would be to make a regex command that either does `process launch --stop-at-entry` or the new `process launch --stop-at-main`.

We don't add real top level commands that are just aliases to extant behavior.

https://github.com/llvm/llvm-project/pull/67019


More information about the lldb-commits mailing list