Skip to content

Commit

Permalink
chore: update breakpad 2023-02-08
Browse files Browse the repository at this point in the history
  • Loading branch information
supervacuus committed Feb 8, 2023
1 parent d82af0a commit ddb5249
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@

- Updated Crashpad backend to 2023-02-07. ([#803](https://github.com/getsentry/sentry-native/pull/803), [crashpad#80](https://github.com/getsentry/crashpad/pull/80))
- CI: Updated GitHub Actions to test on LLVM-mingw. ([#797](https://github.com/getsentry/sentry-native/pull/797))
- Updated Breakpad backend to 2023-02-08. ([#805](https://github.com/getsentry/sentry-native/pull/805), [breakpad#34](https://github.com/getsentry/crashpad/pull/34))

**Thank you**:

Expand Down
4 changes: 4 additions & 0 deletions external/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ set(BREAKPAD_SOURCES_COMMON_LINUX
breakpad/src/common/linux/linux_libc_support.cc
breakpad/src/common/linux/memory_mapped_file.cc
breakpad/src/common/linux/safe_readlink.cc
breakpad/src/common/linux/scoped_pipe.cc
breakpad/src/common/linux/scoped_pipe.h
breakpad/src/common/linux/scoped_tmpfile.cc
breakpad/src/common/linux/scoped_tmpfile.h
)

set(BREAKPAD_SOURCES_COMMON_LINUX_GETCONTEXT
Expand Down
2 changes: 1 addition & 1 deletion external/breakpad
Submodule breakpad updated 47 files
+970 −33 LICENSE
+76 −10 Makefile.am
+468 −196 Makefile.in
+1,637 −0 configure
+1 −1 configure.ac
+28 −32 src/client/linux/minidump_writer/cpu_set_unittest.cc
+15 −26 src/client/linux/minidump_writer/line_reader_unittest.cc
+21 −35 src/client/linux/minidump_writer/proc_cpuinfo_reader_unittest.cc
+24 −12 src/common/dwarf/elf_reader.cc
+3 −1 src/common/dwarf/elf_reader.h
+4 −3 src/common/dwarf_cfi_to_module.cc
+4 −3 src/common/dwarf_cfi_to_module.h
+36 −3 src/common/linux/dump_symbols.cc
+5 −2 src/common/linux/elf_symbols_to_module.cc
+5 −0 src/common/linux/libcurl_wrapper.cc
+4 −0 src/common/linux/libcurl_wrapper.h
+128 −0 src/common/linux/scoped_pipe.cc
+115 −0 src/common/linux/scoped_pipe.h
+71 −0 src/common/linux/scoped_pipe_unittest.cc
+99 −0 src/common/linux/scoped_tmpfile.cc
+85 −0 src/common/linux/scoped_tmpfile.h
+46 −0 src/common/linux/scoped_tmpfile_unittest.cc
+0 −123 src/common/linux/tests/auto_testfile.h
+9 −16 src/common/mac/dump_syms.cc
+3 −8 src/common/mac/dump_syms.h
+18 −21 src/common/module.cc
+16 −5 src/common/module.h
+46 −47 src/common/module_unittest.cc
+4 −2 src/common/stabs_to_module.cc
+4 −0 src/google_breakpad/common/minidump_exception_mac.h
+15 −0 src/google_breakpad/common/minidump_format.h
+18 −0 src/google_breakpad/processor/minidump.h
+78 −115 src/processor/disassembler_objdump.cc
+4 −2 src/processor/exploitability_linux.cc
+131 −4 src/processor/minidump.cc
+17 −1 src/processor/minidump_processor.cc
+37 −0 src/processor/minidump_unittest.cc
+ src/processor/testdata/minidump_crashpad_annotation.dmp
+0 −417 src/tools/mac/crash_report/crash_report.mm
+0 −618 src/tools/mac/crash_report/crash_report.xcodeproj/project.pbxproj
+0 −110 src/tools/mac/crash_report/on_demand_symbol_supplier.h
+0 −313 src/tools/mac/crash_report/on_demand_symbol_supplier.mm
+2 −2 src/tools/mac/dump_syms/dump_syms.xcodeproj/project.pbxproj
+4 −1 src/tools/mac/dump_syms/dump_syms_tool.cc
+2 −2 src/tools/mac/symupload/symupload.xcodeproj/project.pbxproj
+35 −5 src/tools/mac/upload_system_symbols/upload_system_symbols.go
+114 −0 src/tools/mac/upload_system_symbols/upload_system_symbols.sh

0 comments on commit ddb5249

Please sign in to comment.