This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from 0c2f12321 [cmake, unittests] Fix the CMake file for the LLDB unittests [...] new b87e7717c CPlusPlusLanguage: Add unit tests for the FindAlternateFuncti [...] new b81570c62 Convert all RunShellCommand functions to use the Timeout class new fb1b174a8 Fix windows&mac builds broken by r331970 (RunShellCommand/Tim [...] new e5d7d0d85 Fix one more RunShellcommand occurence in mac code new f4996638d Fix the code that gets the Xcode path. After path normalizati [...] new 97e98c33b Retrieve the deployment target when retrieving an object file [...] new adf0f7725 Remove custom path manipulation functions from FileSpec new d68e35a54 HostInfoMacOSX: Share the clang resource directory with Swift. new d7970de97 Add a lock to PlatformPOSIX::DoLoadImage new 408c1a2ed Fix a regression in r332111. The LLDB.framework path componen [...] new 9bd58e25a Yet another follow-up to r332111. This also handles the case [...] new 1bba75af0 Conditionally compile a Darwin-only test. new c0582b1ad [LLDB] Support GNU-style compressed debug sections (.zdebug) new bb3e398a9 [LanguageRuntime/ObjC] Turn off ISA logging once and for all. new d12816368 Revert "[LLDB] Support GNU-style compressed debug sections (. [...] new cc242f2a5 Revert "Protect DWARFCompileUnit::m_die_array by a new mutex" new 1f5645680 Use const_iterator in DWARFUnit
The 17 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/Host/Host.h | 7 +- include/lldb/Host/macosx/HostInfoMacOSX.h | 2 + include/lldb/Target/Platform.h | 4 +- include/lldb/Target/Process.h | 30 +-- lit/Modules/lc_version_min.yaml | 205 +++++++++++++++++++++ source/API/SBPlatform.cpp | 25 +-- source/Commands/CommandObjectPlatform.cpp | 10 +- source/Host/common/Host.cpp | 12 +- source/Host/macosx/Host.mm | 3 +- source/Host/macosx/HostInfoMacOSX.mm | 74 +++++++- source/Host/macosx/Symbols.cpp | 5 +- source/Host/windows/Host.cpp | 2 +- .../ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp | 10 +- .../Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp | 45 +++-- source/Plugins/Platform/MacOSX/PlatformDarwin.cpp | 6 +- source/Plugins/Platform/MacOSX/PlatformMacOSX.cpp | 2 +- source/Plugins/Platform/POSIX/PlatformPOSIX.cpp | 56 +++--- source/Plugins/Platform/POSIX/PlatformPOSIX.h | 11 +- .../gdb-server/PlatformRemoteGDBServer.cpp | 6 +- .../Platform/gdb-server/PlatformRemoteGDBServer.h | 3 +- .../gdb-remote/GDBRemoteCommunicationClient.cpp | 9 +- .../gdb-remote/GDBRemoteCommunicationClient.h | 3 +- .../GDBRemoteCommunicationServerCommon.cpp | 7 +- source/Plugins/SymbolFile/DWARF/DWARFUnit.cpp | 25 +-- source/Plugins/SymbolFile/DWARF/DWARFUnit.h | 2 - source/Target/Platform.cpp | 6 +- source/Target/Process.cpp | 12 +- source/Utility/FileSpec.cpp | 90 +-------- unittests/Host/CMakeLists.txt | 1 + unittests/Host/HostInfoTest.cpp | 48 +++++ .../Language/CPlusPlus/CPlusPlusLanguageTest.cpp | 25 ++- unittests/Utility/FileSpecTest.cpp | 8 +- 32 files changed, 500 insertions(+), 254 deletions(-) create mode 100644 lit/Modules/lc_version_min.yaml