Linux
Last updated
Was this helpful?
Last updated
Was this helpful?
BugSplat recommends using for Linux crash reporting. Crashpad is Google's latest open-source crash reporting tool. It is the successor to the popular Breakpad crash reporter and allows you to submit minidumps to a configured URL after a crash occurs in your product.
Before continuing with the tutorial, please review our sample application.
The first step in integrating with Crashpad is ensuring your system has all the required dependencies. These dependencies include git
, python
, llvm
and clang++
. The following snippet will download and install all the dependencies on an Ubuntu system:
Next, you will need to build and integrate Crashpad with your application. For a step-by-step guide on how to build and integrate Crashpad please see this .
Once you've built and integrated Crashpad, you must ensure that your application is built with symbolic information and a build identifier. Symbolic information is required to map the stack trace in the minidump to function names and line numbers in your application's source. A build identifier is required so that minidump_stackwalk
can match modules loaded at runtime with the corresponding .sym
file.
If you are building with clang++
, specify the -g
flag to ensure the output executable contains symbolic information for debugging. Additionally, when building with clang++
you must pass the -Wl,--build-id
argument to ensure the linker creates a build identifier in the output executable. The following from demonstrates how to link the Crashpad libraries and output an executable with symbolic information using clang++
:
Once you have symbol-upload downloaded or installed, modify the following command to suit your needs.
It's crucial that you re-upload symbols each time you build your application. Otherwise, BugSplat cannot generate function names and line numbers for the crash report. Symbols should be uploaded using a new version for every build to ensure your crashes are processed quickly.
If you've set everything up correctly, your crash report should look like this:
Finally, you will need to generate and upload .sym
files to BugSplat. BugSplat's symbol-upload tool can be used conveniently to generate and upload .sym
files with a single terminal command. Download a copy of symbol-upload from or install it via .