[Lldb-commits] [lldb] 4cf458c - Fix help doc for 'enable-background-lookup' obsolete setting

Jason Molenda via lldb-commits lldb-commits at lists.llvm.org
Thu Feb 15 23:53:21 PST 2024


Author: Jason Molenda
Date: 2024-02-15T23:53:14-08:00
New Revision: 4cf458c696047d6d2991c121da7a5c165ff747ce

URL: https://github.com/llvm/llvm-project/commit/4cf458c696047d6d2991c121da7a5c165ff747ce
DIFF: https://github.com/llvm/llvm-project/commit/4cf458c696047d6d2991c121da7a5c165ff747ce.diff

LOG: Fix help doc for 'enable-background-lookup' obsolete setting

The setting name that was settled on is symbols.auto-download.

Added: 
    

Modified: 
    lldb/source/Core/CoreProperties.td

Removed: 
    


################################################################################
diff  --git a/lldb/source/Core/CoreProperties.td b/lldb/source/Core/CoreProperties.td
index 9c4aa2de3d7b73..4cfff805688c56 100644
--- a/lldb/source/Core/CoreProperties.td
+++ b/lldb/source/Core/CoreProperties.td
@@ -8,7 +8,7 @@ let Definition = "modulelist" in {
   def EnableBackgroundLookup: Property<"enable-background-lookup", "Boolean">,
     Global,
     DefaultFalse,
-    Desc<"Alias for backward compatibility: when enabled this is the equivalent to 'symbols.download background'.">;
+    Desc<"Alias for backward compatibility: when enabled this is the equivalent to 'symbols.auto-download background'.">;
   def AutoDownload: Property<"auto-download", "Enum">,
     Global,
     DefaultEnumValue<"eSymbolDownloadOff">,


        


More information about the lldb-commits mailing list