Mercurial > hg > CbC > CbC_llvm
comparison lldb/tools/driver/Options.td @ 236:c4bab56944e8 llvm-original
LLVM 16
author | kono |
---|---|
date | Wed, 09 Nov 2022 17:45:10 +0900 |
parents | 79ff65ed7e25 |
children |
comparison
equal
deleted
inserted
replaced
232:70dce7da266c | 236:c4bab56944e8 |
---|---|
46 def: Flag<["-"], "P">, | 46 def: Flag<["-"], "P">, |
47 Alias<python_path>, | 47 Alias<python_path>, |
48 HelpText<"Alias for --python-path">, | 48 HelpText<"Alias for --python-path">, |
49 Group<grp_scripting>; | 49 Group<grp_scripting>; |
50 | 50 |
51 def print_script_interpreter_info: F<"print-script-interpreter-info">, | |
52 HelpText<"Prints out a json dictionary with information about the scripting language interpreter.">, | |
53 Group<grp_scripting>; | |
54 | |
51 def script_language: Separate<["--", "-"], "script-language">, | 55 def script_language: Separate<["--", "-"], "script-language">, |
52 MetaVarName<"<language>">, | 56 MetaVarName<"<language>">, |
53 HelpText<"Tells the debugger to use the specified scripting language for user-defined scripts.">, | 57 HelpText<"Tells the debugger to use the specified scripting language for user-defined scripts.">, |
54 Group<grp_scripting>; | 58 Group<grp_scripting>; |
55 def: Separate<["-"], "l">, | 59 def: Separate<["-"], "l">, |
108 Alias<batch>, | 112 Alias<batch>, |
109 HelpText<"Alias for --batch">, | 113 HelpText<"Alias for --batch">, |
110 Group<grp_command>; | 114 Group<grp_command>; |
111 | 115 |
112 def source_quietly: F<"source-quietly">, | 116 def source_quietly: F<"source-quietly">, |
113 HelpText<"Tells the debugger to execute this one-line lldb command before any file has been loaded.">, | 117 HelpText<"Tells the debugger not to echo commands while sourcing files or one-line commands provided on the command line.">, |
114 Group<grp_command>; | 118 Group<grp_command>; |
115 def: Flag<["-"], "Q">, | 119 def: Flag<["-"], "Q">, |
116 Alias<source_quietly>, | 120 Alias<source_quietly>, |
117 HelpText<"Alias for --source-quietly">, | 121 HelpText<"Alias for --source-quietly">, |
118 Group<grp_command>; | 122 Group<grp_command>; |
222 HelpText<"Tells the debugger to print out extra information for debugging itself.">; | 226 HelpText<"Tells the debugger to print out extra information for debugging itself.">; |
223 def: Flag<["-"], "d">, | 227 def: Flag<["-"], "d">, |
224 Alias<debug>, | 228 Alias<debug>, |
225 HelpText<"Alias for --debug">; | 229 HelpText<"Alias for --debug">; |
226 | 230 |
227 def capture: F<"capture">, | |
228 HelpText<"Tells the debugger to capture a reproducer.">; | |
229 def capture_path: Separate<["--", "-"], "capture-path">, | |
230 MetaVarName<"<filename>">, | |
231 HelpText<"Tells the debugger to use the given filename for the reproducer.">; | |
232 def replay: Separate<["--", "-"], "replay">, | |
233 MetaVarName<"<filename>">, | |
234 HelpText<"Tells the debugger to replay a reproducer from <filename>.">; | |
235 def reproducer_finalize: Separate<["--", "-"], "reproducer-finalize">, | |
236 MetaVarName<"<filename>">; | |
237 def no_version_check: F<"reproducer-no-version-check">, | |
238 HelpText<"Disable the reproducer version check.">; | |
239 def no_verification: F<"reproducer-no-verify">, | |
240 HelpText<"Disable the reproducer verification.">; | |
241 def no_generate_on_signal: F<"reproducer-no-generate-on-signal">, | |
242 HelpText<"Don't generate reproducer when a signal is received.">; | |
243 def generate_on_exit: F<"reproducer-generate-on-exit">, | |
244 HelpText<"Generate reproducer on exit.">; | |
245 | |
246 def REM : R<["--"], "">; | 231 def REM : R<["--"], "">; |