Skip to content

Commit

Permalink
Merge dba2d52 into 4452840
Browse files Browse the repository at this point in the history
  • Loading branch information
yucelalbar authored Nov 16, 2021
2 parents 4452840 + dba2d52 commit 5b615b1
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@
[submodule "external/crashpad"]
path = external/crashpad
url = https://github.com/mystaff/crashpad.git
branch = timedoctor
branch = yalbar-STAFF-121291
4 changes: 4 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -417,6 +417,10 @@ if(SENTRY_BACKEND_CRASHPAD)
else()
set(CRASHPAD_ENABLE_INSTALL ON CACHE BOOL "Enable crashpad installation" FORCE)
endif()
if(APPLE AND NOT IOS)
set(CRASHPAD_ENABLE_STACKTRACE ON CACHE BOOL "Enable client-side stacktrace" FORCE)
endif()

add_subdirectory(external/crashpad crashpad_build)

# set static runtime if enabled
Expand Down
2 changes: 1 addition & 1 deletion external/breakpad
Submodule breakpad updated 61 files
+0 −17 .github/mistaken-pull-closer.yml
+65 −0 .github/workflows/build-test-ci.yml
+0 −34 .travis.yml
+1 −1 DEPS
+1 −1 README.md
+1 −1 default.xml
+0 −70 scripts/travis-build.sh
+0 −24 scripts/travis-checkout.sh
+8 −0 src/client/ios/Breakpad.xcodeproj/project.pbxproj
+6 −5 src/client/mac/Framework/OnDemandServer.mm
+2 −1 src/client/mac/handler/dynamic_images.h
+2 −2 src/client/windows/crash_generation/minidump_generator.cc
+6 −3 src/common/dwarf/dwarf2diehandler.h
+7 −1 src/common/dwarf/dwarf2reader.cc
+286 −133 src/common/dwarf_cu_to_module.cc
+10 −2 src/common/dwarf_cu_to_module.h
+10 −8 src/common/dwarf_cu_to_module_unittest.cc
+2 −2 src/common/dwarf_line_to_module.cc
+8 −5 src/common/dwarf_line_to_module.h
+38 −19 src/common/dwarf_line_to_module_unittest.cc
+13 −7 src/common/linux/dump_symbols.cc
+64 −9 src/common/mac/HTTPRequest.m
+6 −1 src/common/mac/arch_utilities.cc
+13 −9 src/common/mac/dump_syms.cc
+109 −5 src/common/module.cc
+123 −5 src/common/module.h
+3 −2 src/common/module_unittest.cc
+2 −1 src/common/stabs_to_module.cc
+3 −3 src/common/stabs_to_module_unittest.cc
+114 −0 src/common/string_view.h
+19 −3 src/common/symbol_data.h
+2 −2 src/common/windows/http_upload.cc
+1 −3 src/common/windows/pdb_source_line_writer.cc
+3 −1 src/google_breakpad/common/minidump_exception_mac.h
+29 −0 src/google_breakpad/processor/basic_source_line_resolver.h
+6 −1 src/google_breakpad/processor/source_line_resolver_base.h
+9 −2 src/google_breakpad/processor/source_line_resolver_interface.h
+6 −3 src/google_breakpad/processor/stack_frame.h
+5 −1 src/google_breakpad/processor/stack_frame_symbolizer.h
+202 −2 src/processor/basic_source_line_resolver.cc
+38 −3 src/processor/basic_source_line_resolver_types.h
+171 −11 src/processor/basic_source_line_resolver_unittest.cc
+0 −4 src/processor/exploitability_linux.cc
+0 −1 src/processor/exploitability_win.cc
+4 −1 src/processor/fast_source_line_resolver.cc
+3 −1 src/processor/fast_source_line_resolver_types.h
+11 −11 src/processor/fast_source_line_resolver_unittest.cc
+12 −21 src/processor/minidump.cc
+3 −0 src/processor/minidump_processor.cc
+4 −2 src/processor/source_line_resolver_base.cc
+34 −1 src/processor/source_line_resolver_base_types.h
+4 −3 src/processor/stack_frame_symbolizer.cc
+365 −329 src/processor/stackwalk_common.cc
+8 −3 src/processor/stackwalker.cc
+ src/processor/testdata/linux_inline.dmp
+71 −0 src/processor/testdata/symbols/linux_inline/BBA6FA10B8AAB33D00000000000000000/linux_inline.sym
+6 −1 src/tools/linux/dump_syms/dump_syms.cc
+2 −3 src/tools/linux/md2core/minidump-2-core.cc
+0 −2 src/tools/linux/symupload/sym_upload.cc
+10 −3 src/tools/mac/dump_syms/dump_syms_tool.cc
+1 −1 src/tools/mac/symupload/symupload.mm
2 changes: 1 addition & 1 deletion external/crashpad
Submodule crashpad updated 1 files
+1 −0 CMakeLists.txt

0 comments on commit 5b615b1

Please sign in to comment.