diff options
Diffstat (limited to 'tools/driver/Options.td')
-rw-r--r-- | tools/driver/Options.td | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/tools/driver/Options.td b/tools/driver/Options.td index 563c0b54fb985..4ea98ee48fa26 100644 --- a/tools/driver/Options.td +++ b/tools/driver/Options.td @@ -95,6 +95,9 @@ def: Flag<["-"], "x">, Alias<no_lldbinit>, HelpText<"Alias for --no-lldbinit">, Group<grp_command>; +def local_lldbinit: F<"local-lldbinit">, + HelpText<"Allow the debugger to parse the .lldbinit files in the current working directory, unless --no-lldbinit is passed.">, + Group<grp_command>; def batch: F<"batch">, HelpText<"Tells the debugger to run the commands from -s, -S, -o & -O, and then quit.">, @@ -219,9 +222,11 @@ def: Flag<["-"], "d">, Alias<debug>, HelpText<"Alias for --debug">; -def capture: Separate<["--", "-"], "capture">, +def capture: F<"capture">, + HelpText<"Tells the debugger to capture a reproducer.">; +def capture_path: Separate<["--", "-"], "capture-path">, MetaVarName<"<filename>">, - HelpText<"Tells the debugger to capture a reproducer to <filename>.">; + HelpText<"Tells the debugger to use the given filename for the reproducer.">; def replay: Separate<["--", "-"], "replay">, MetaVarName<"<filename>">, HelpText<"Tells the debugger to replay a reproducer from <filename>.">; |