This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from c77a32de1 Workaround TestConcurrentMany* flakiness in a more pricipled way new aa5399642 Upstream macCatalyst support in debugserver and the macOS dyn [...]
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/Core/Module.h | 3 ++ include/lldb/Host/macosx/HostInfoMacOSX.h | 1 + include/lldb/Target/Process.h | 3 ++ .../Python/lldbsuite/test/macosx/macabi/Makefile | 18 +++++++ .../test/macosx/macabi/TestMacABImacOSFramework.py | 28 +++++++++++ .../Python/lldbsuite/test/macosx/macabi/dylib.mk | 6 +++ packages/Python/lldbsuite/test/macosx/macabi/foo.c | 8 ++++ packages/Python/lldbsuite/test/macosx/macabi/foo.h | 1 + .../Python/lldbsuite/test/macosx/macabi/main.c | 5 ++ packages/Python/lldbsuite/test/make/Makefile.rules | 13 ++++- .../tools/lldb-server/TestGdbRemoteHostInfo.py | 1 + source/Core/Module.cpp | 20 ++++++++ source/Host/macosx/objcxx/HostInfoMacOSX.mm | 31 +++++++----- .../MacOSX-DYLD/DynamicLoaderDarwin.cpp | 44 +++++++++++++++++ .../MacOSX-DYLD/DynamicLoaderDarwin.h | 56 ++++++++++++---------- .../gdb-remote/GDBRemoteCommunicationClient.cpp | 28 ++++++++++- .../gdb-remote/GDBRemoteCommunicationClient.h | 3 ++ .../GDBRemoteCommunicationServerCommon.cpp | 9 ++++ .../Process/gdb-remote/ProcessGDBRemote.cpp | 4 ++ .../Plugins/Process/gdb-remote/ProcessGDBRemote.h | 1 + tools/debugserver/source/MacOSX/MachProcess.mm | 24 ++++++---- 21 files changed, 259 insertions(+), 48 deletions(-) create mode 100644 packages/Python/lldbsuite/test/macosx/macabi/Makefile create mode 100644 packages/Python/lldbsuite/test/macosx/macabi/TestMacABImacOSFra [...] create mode 100644 packages/Python/lldbsuite/test/macosx/macabi/dylib.mk create mode 100644 packages/Python/lldbsuite/test/macosx/macabi/foo.c create mode 100644 packages/Python/lldbsuite/test/macosx/macabi/foo.h create mode 100644 packages/Python/lldbsuite/test/macosx/macabi/main.c