This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from 687b743f4 Add SBInitializerOptions.h to the Xcode project. new 5e056e624 Introduce ObjectFileBreakpad
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/Symbol/ObjectFile.h | 12 ++ lit/Modules/Breakpad/Inputs/bad-module-id-1.syms | 2 + lit/Modules/Breakpad/Inputs/bad-module-id-2.syms | 2 + lit/Modules/Breakpad/Inputs/bad-module-id-3.syms | 2 + .../Breakpad/Inputs/identification-linux.syms | 6 + .../Breakpad/Inputs/identification-macosx.syms | 6 + .../Breakpad/Inputs/identification-windows.syms | 4 + lit/Modules/Breakpad/breakpad-identification.test | 32 +++ .../breakpoint => Modules/Breakpad}/lit.local.cfg | 0 source/API/SystemInitializerFull.cpp | 3 + source/Plugins/ObjectFile/Breakpad/CMakeLists.txt | 11 + .../ObjectFile/Breakpad/ObjectFileBreakpad.cpp | 239 +++++++++++++++++++++ .../ObjectFile/Breakpad/ObjectFileBreakpad.h | 104 +++++++++ source/Plugins/ObjectFile/CMakeLists.txt | 3 +- source/Symbol/ObjectFile.cpp | 60 ++++++ tools/lldb-test/SystemInitializerTest.cpp | 3 + tools/lldb-test/lldb-test.cpp | 13 ++ 17 files changed, 501 insertions(+), 1 deletion(-) create mode 100644 lit/Modules/Breakpad/Inputs/bad-module-id-1.syms create mode 100644 lit/Modules/Breakpad/Inputs/bad-module-id-2.syms create mode 100644 lit/Modules/Breakpad/Inputs/bad-module-id-3.syms create mode 100644 lit/Modules/Breakpad/Inputs/identification-linux.syms create mode 100644 lit/Modules/Breakpad/Inputs/identification-macosx.syms create mode 100644 lit/Modules/Breakpad/Inputs/identification-windows.syms create mode 100644 lit/Modules/Breakpad/breakpad-identification.test copy lit/{tools/lldb-mi/breakpoint => Modules/Breakpad}/lit.local.cfg (100%) create mode 100644 source/Plugins/ObjectFile/Breakpad/CMakeLists.txt create mode 100644 source/Plugins/ObjectFile/Breakpad/ObjectFileBreakpad.cpp create mode 100644 source/Plugins/ObjectFile/Breakpad/ObjectFileBreakpad.h