[Lldb-commits] [lldb] [lldb] Remove --debug/-d option from lldb (PR #179978)
David Spickett via lldb-commits
lldb-commits at lists.llvm.org
Thu Feb 5 08:51:55 PST 2026
https://github.com/DavidSpickett created https://github.com/llvm/llvm-project/pull/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.
>From 0285e55c17589765c6273cc1eefd18f8d49331b5 Mon Sep 17 00:00:00 2001
From: David Spickett <david.spickett at arm.com>
Date: Thu, 5 Feb 2026 16:48:51 +0000
Subject: [PATCH] [lldb] Remove --debug/-d option from lldb
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.
---
lldb/tools/driver/Options.td | 5 -----
1 file changed, 5 deletions(-)
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<["--"], "">;
More information about the lldb-commits
mailing list