Questions tagged [crashpad]
12 questions
5
votes
1 answer
Integrating Crashpad with MacOS Qt application
Our Qt application is built using qmake. We've built Crashpad from this commit which is currently the tip of master. We've linked our Qt application with libclient.a, libbase.a, libhandler.a, libutil.a, Security.Framework and AppKit.Framework and…

bobbyg603
- 3,536
- 2
- 19
- 30
4
votes
1 answer
Integrating Crashpad with a Windows Qt application
We are trying to integrate Crashpad with our Qt application and have run into several errors. We built Crashpad and attempted to link it to our application using the following snippet from the .pro file:
# Crashpad rules for Windows
win32 {
LIBS…

bobbyg603
- 3,536
- 2
- 19
- 30
2
votes
1 answer
Integrating Crashpad with Qt on Linux
I am trying to integrate Crashpad into Qt application on Linux. I am using Bugsplat database for testing and I followed this tutorial and managed to build this "dummy" application, which should serve as an example of using Qt with Crashpad.
I have…

Brykyz
- 587
- 4
- 30
1
vote
1 answer
Crashpad not generating a crash report after qml is executed
I'm trying to integrate Crashpad with Qt, with some QML in my code.
Here the crash report is generated successfully without any issue.
CrashpadClient *client = initializeCrashpad();
if (!client) {
std::cout << "Crash not processed";
}
…

Jatin Rastogi
- 11
- 3
1
vote
0 answers
libcrashpad_handler.so: library "libc++_shared.so" not found: needed by main executable
I followed the manual written by Bugsplat to build Crashpad for Android.
The build was successful and I got all necessary libraries. However I noticed that the prebuilt library libcrashpad_handler.so in Bugsplat's sample weighs about 26Mb. And mine…

Sheikh
- 1,116
- 6
- 15
1
vote
1 answer
Crash a thread in a Win32 application
I have an application which implements crash handling and reporting using Google Crashpad and Sentry.
The application implements a watchdog which checks for freezes on critical threads, and aborts the application if it detects such a case.
However,…

Tom Mettam
- 2,903
- 1
- 27
- 38
1
vote
1 answer
How to get crashed process id from a minidump file
My application is developed with Electron(v11.1.1), and it uses crashpad to catch all crash dmp files from every processes.
How can I get crashed process id or other meta data from a minidump file

QuinnChen
- 670
- 1
- 8
- 29
1
vote
0 answers
How do I fix a crashpad compilation error (for windows)
tI am following the instructions listed here: https://github.com/chromium/crashpad/blob/master/doc/developing.md
I cloned crashpad from here: https://chromium.googlesource.com/crashpad/crashpad
But I get the following…
0
votes
1 answer
Compiling Google Crashpad as a DLL on Windows
Is it even possible to build Google Crashpad into DLLs instead of static libraries? I have a cross-platform application I'm trying to integrate the crashpad to, however the build system of the crashpad is limited to its defaults, disallowing one to…

G-Virus
- 37
- 8
0
votes
0 answers
Crashpad how to set the dump level in windows? I want to adjust to Full dump。
I saw the following passage on the official website, but I don't know how to set it
Crash Dump Creation
To create a crash dump, a subset of the machine, OS and application state is grabbed from the crashed process into an in-memory snapshot…

raver
- 1
0
votes
1 answer
Debugging Chrome Crashpad crash report from Mac
My application somehow manages to crash a customer's Chrome browser on Mac. I asked the customer to enable crash reports and send me the dump file next time it happens. I got a Crashpad.zip file that contains a bunch of .dmp files. I suppose each…

Michael_S_
- 488
- 4
- 11
- 26
0
votes
1 answer
No Module error from minidump_stackwalk in Breakpad
I have started working with google breakpad on Linux very recently. I have cloned it and built it successfully. I followed the steps given in: https://chromium.googlesource.com/breakpad/breakpad/+/master/docs/linux_starter_guide.md. I have created…

Ritanya
- 31
- 3