[Lldb-commits] [lldb] [LLDB-DAP] SBDebugger don't prefix title on progress updates (PR #124648)
Greg Clayton via lldb-commits
lldb-commits at lists.llvm.org
Wed Feb 19 17:13:49 PST 2025
================
@@ -37,7 +37,10 @@ def create_options(cls):
)
parser.add_option(
- "--total", dest="total", help="Total to count up.", type="int"
+ "--total",
+ dest="total",
+ help="Total to count up, use -1 to identify as indeterminate",
----------------
clayborg wrote:
Don't specify to use -1 as indeterminate, if not set, this will default to `None`, see comment below. You can say "If this option isn't specified with a valid value of 1 or higher, the progress will be indeterminate."
https://github.com/llvm/llvm-project/pull/124648
More information about the lldb-commits
mailing list