[Lldb-commits] [PATCH] D117623: [lldb] Print an error message when we're reading libobjc.A.dylib from memory
Adrian Prantl via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Tue Jan 18 16:25:50 PST 2022
aprantl added inline comments.
================
Comment at: lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp:2377
+ stream->Printf(
+ "warning: libobjc.A.dylib is being read from memory instead of the %s"
+ "shared cache. This will likely reduce performance.\n",
----------------
Here's my take:
```
libobjc.A.dylib is being read from process memory. This indicates that LLDB could not find the the on-disk %s shared cache for this device. This will likely reduce debugging performance.
```
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D117623/new/
https://reviews.llvm.org/D117623
More information about the lldb-commits
mailing list