Linux
Overview
BugSplat recommends using Crashpad 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 myUbuntuCrasher sample application.
Tutorial
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 doc.
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.
When specifying the Crashpad libraries libbase.a
must be the last library argument specified otherwise your code will not compile.
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 script from myUbuntuCrasher demonstrates how to link the Crashpad libraries and output an executable with symbolic information using clang++
:
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 GitHub or install it via npm.
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:
Last updated