[Lldb-commits] [lldb] [lldb] Add a new way of loading files from a shared cache (PR #179881)
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Thu Feb 5 01:27:01 PST 2026
================
@@ -14,6 +14,10 @@ let Definition = "modulelist" in {
DefaultEnumValue<"eSymbolDownloadOff">,
EnumValues<"OptionEnumValues(g_auto_download_enum_values)">,
Desc<"On macOS, automatically download symbols with dsymForUUID (or an equivalent script/binary) for relevant images in the debug session.">;
+ def SharedCacheSegmentLoads: Property<"shared-cache-segment-mapping", "Boolean">,
+ Global,
+ DefaultTrue,
+ Desc<"On macOS, a feature to load the binaries from a shared cache blob directly, instead of requiring discrete binaries or using lldb's own shared cache memory.">;
----------------
JDevlieghere wrote:
Nit: the help text usually takes an imperative tone.
```suggestion
Desc<"On macOS, load the binaries from a shared cache blob directly, instead of loading them from lldb's own in-process shared cache.">;
```
https://github.com/llvm/llvm-project/pull/179881
More information about the lldb-commits
mailing list