[Lldb-commits] [lldb] [lldb/crashlog] Make interactive mode the new default (PR #94575)
Alex Langford via lldb-commits
lldb-commits at lists.llvm.org
Mon Jun 10 15:01:52 PDT 2024
================
@@ -1821,31 +1858,24 @@ def SymbolicateCrashLogs(debugger, command_args, result, is_command):
print(debugger.GetVersionString())
return
- if options.debug:
- print("command_args = %s" % command_args)
- print("options", options)
- print("args", options.reports)
-
if options.debug_delay > 0:
print("Waiting %u seconds for debugger to attach..." % options.debug_delay)
time.sleep(options.debug_delay)
error = lldb.SBError()
def should_run_in_interactive_mode(options, ci):
- if options.interactive:
+ if options.mode:
----------------
bulbazord wrote:
When is this ever false?
https://github.com/llvm/llvm-project/pull/94575
More information about the lldb-commits
mailing list