This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from 7e3888c Correct makefile.rules to use toolchain specific AR and OBJCOPY new 5d29d3f Support for OCaml native debugging
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: cmake/LLDBDependencies.cmake | 1 + include/lldb/Symbol/OCamlASTContext.h | 355 +++++++++ include/lldb/Symbol/TypeSystem.h | 1 + source/API/SystemInitializerFull.cpp | 6 + source/Plugins/Language/CMakeLists.txt | 1 + source/Plugins/Language/OCaml/CMakeLists.txt | 4 + source/Plugins/Language/OCaml/OCamlLanguage.cpp | 78 ++ .../{Java/JavaLanguage.h => OCaml/OCamlLanguage.h} | 15 +- source/Plugins/SymbolFile/DWARF/CMakeLists.txt | 1 + .../SymbolFile/DWARF/DWARFASTParserOCaml.cpp | 232 ++++++ .../Plugins/SymbolFile/DWARF/DWARFASTParserOCaml.h | 60 ++ source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.h | 1 + source/Symbol/CMakeLists.txt | 1 + source/Symbol/OCamlASTContext.cpp | 798 +++++++++++++++++++++ 14 files changed, 1545 insertions(+), 9 deletions(-) create mode 100644 include/lldb/Symbol/OCamlASTContext.h create mode 100644 source/Plugins/Language/OCaml/CMakeLists.txt create mode 100644 source/Plugins/Language/OCaml/OCamlLanguage.cpp copy source/Plugins/Language/{Java/JavaLanguage.h => OCaml/OCamlLanguage.h} (76%) create mode 100644 source/Plugins/SymbolFile/DWARF/DWARFASTParserOCaml.cpp create mode 100644 source/Plugins/SymbolFile/DWARF/DWARFASTParserOCaml.h create mode 100644 source/Symbol/OCamlASTContext.cpp