[Lldb-commits] [PATCH] D80165: [lldb/Driver] Fix handling on positional arguments
Jim Ingham via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Tue May 19 10:55:41 PDT 2020
jingham added a comment.
I agree with Pavel, reporting an error and exiting seems like a good behavior. When I mistype a command line option, I generally immediately quit lldb, up-arrow and fix and resubmit, so this would save keystrokes.
We should make sure if we do exit that we don't output any other text that would obscure the error message. It should be easy to spot the error both so you can easily fix it and to prevent you from typing lldb commands into your shell. If libOption had a "nearest option name to the one you typed" facility that would be useful in this case as well.
Does anybody remember what gdb does when you mistype a command-line option? We're not at all required to model their behavior, but it would be interesting to consider.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D80165/new/
https://reviews.llvm.org/D80165
More information about the lldb-commits
mailing list