1
0
Fork 0
libreoffice/external/breakpad
Daniel Baumann 8e63e14cf6
Adding upstream version 4:25.2.3.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-22 16:20:04 +02:00
..
0001-Handle-race-between-ExceptionHandler-SignalHandler-a.patch.1 Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00
breakpad-dump_syms.patch.1 Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00
breakpad-no-env.patch.1 Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00
breakpad-stackwalk.patch.1 Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00
breakpad-use-correct-http-header.patch.1 Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00
breakpad-wshadow.patch.1 Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00
c++20-allocator.patch Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00
dump_syms.sln Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00
dump_syms.vcxproj Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00
ExternalProject_breakpad.mk Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00
include.patch Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00
Makefile Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00
Module_breakpad.mk Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00
README Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00
sanitizer.patch Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00
SIGSTKSZ.patch Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00
StaticLibrary_breakpad.mk Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00
ubsan.patch Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00
UnpackedTarball_breakpad.mk Adding upstream version 4:25.2.3. 2025-06-22 16:20:04 +02:00

Google breakpad crash-reporting library

https://chromium.googlesource.com/breakpad/breakpad

When this is enabled and soffice.bin crashes, a "mini-dump" file is written
as "instdir/crash/*.dmp".

There is an UI to upload the mini-dump to a TDF server but of course
that only makes sense if the server has symbols available that match
the build, which is not the case if you have built LO yourself.

If you want to get the backtrace from local mini-dump files:

* with Visual Studio:
  1. open the *.dmp file from the Visual Studio IDE File->Open->File
  2. then click "Debug Native Only"

* otherwise:
  1. run "make symbols" to extract the debuginfo from the binaries
  2. run "workdir/UnpackedTarball/breakpad/src/processor/minidump_stackwalk foo.dmp workdir/symbols"