This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from b962aee Fix an issue where LLDB would detect an empty shared cache - [...] new e29ea16 Add a new DynamicLoader plugin that uses SPI that are in deve [...]
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: include/lldb/Target/Process.h | 19 + lldb.xcodeproj/project.pbxproj | 7 + source/API/SystemInitializerFull.cpp | 3 + .../DynamicLoader/MacOSX-DYLD/CMakeLists.txt | 1 + .../MacOSX-DYLD/DynamicLoaderDarwin.cpp | 236 ++++++--- .../MacOSX-DYLD/DynamicLoaderDarwin.h | 33 +- .../MacOSX-DYLD/DynamicLoaderMacOS.cpp | 528 +++++++++++++++++++++ .../DynamicLoader/MacOSX-DYLD/DynamicLoaderMacOS.h | 129 +++++ .../MacOSX-DYLD/DynamicLoaderMacOSXDYLD.cpp | 12 +- .../MacOSX-DYLD/DynamicLoaderMacOSXDYLD.h | 11 + .../Process/gdb-remote/ProcessGDBRemote.cpp | 49 +- .../Plugins/Process/gdb-remote/ProcessGDBRemote.h | 9 + .../debugserver.xcodeproj/project.pbxproj | 7 + 13 files changed, 970 insertions(+), 74 deletions(-) create mode 100644 source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderMacOS.cpp create mode 100644 source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderMacOS.h