Author: David Spickett Date: 2026-02-06T09:22:31Z New Revision: b02a6363e8950904b81ba1eff1f4d5d0dd296c69
URL: https://github.com/llvm/llvm-project/commit/b02a6363e8950904b81ba1eff1f4d5d0dd296c69 DIFF: https://github.com/llvm/llvm-project/commit/b02a6363e8950904b81ba1eff1f4d5d0dd296c69.diff LOG: [lldb] Remove --debug/-d option from lldb (#179978) The functionality was removed in d3173f4ab61c17337908eb7df3f1c515ddcd428c after being broken for a long time. There's a small risk someone is still passing the option, but I think it's time to remove it and they can fix their scripts. Added: Modified: lldb/tools/driver/Options.td Removed: ################################################################################ diff --git a/lldb/tools/driver/Options.td b/lldb/tools/driver/Options.td index 311e2602cc41f..e8f1bd993176e 100644 --- a/lldb/tools/driver/Options.td +++ b/lldb/tools/driver/Options.td @@ -240,9 +240,4 @@ def arch : Separate<["--", "-"], "arch">, "starting and running the program.">; def : Separate<["-"], "a">, Alias<arch>, HelpText<"Alias for --arch">; -def debug : F<"debug">, - HelpText<"Tells the debugger to print out extra information for " - "debugging itself.">; -def : Flag<["-"], "d">, Alias<debug>, HelpText<"Alias for --debug">; - def REM : R<["--"], "">; _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
