This sample demonstrates cross-platform crash reporting with BugSplat, Crashpad, and Qt. Additionally, my-qt-crasher uses symbol-upload to generate symbol files and upload them to BugSplat
For more information about how to configure Crashpad in your Qt application please see the BugSplat docs.
- Download and install Qt Creator
- Open myQtCrasher.pro
- Build > Run to run without the debugger attached
- Click the button to generate a crash report
- Log into BugSplat using our public account [email protected] and the password Flintstone
- Click the link in the ID column on the Crashes page to see detailed information similar to what you would see in your debugger
When building your Qt project you may encounter Il mismatch between 'P1' version 'x' and 'P2' version 'y'
. This is due to Qt building with a different toolchain than the Crashpad libraries. To workaround the Il mismatch
issue, build Crashpad specifying /GL-
for extra_cflags
. When Crashpad is built with different minor versions of MSVC specifying /GL-
usually fixes the problem. However, if the linker complains about unresolved symbols after specifying /GL-
you will need to ensure you're building with the same major version of MSVC. The pre-built Crashpad libraries included in this sample are built with MSVC 17 (2022).
You will need to link with the correct libraries and load the correct version of crashpad_handler
at runtime depending on if your build is targeting x86_64 or arm64 (M1) macOS systems. In myQtCrasher.pro
there is an variable that you can uncomment that will allow you to build for arm64 macOS systems.
Attachments
BugSplat has created a Crashpad fork that adds support for attachments to macOS. This project uses pre-built binaries from the forked version of Crashpad to demonstrate attachment support on macOS. If attachment support on macOS is a requirement for your project, you can use the pre-built libraries from this repo, or build the Crashpad libraries yourself from the code in our forked repo.
If you change the BugSplat database
, application
, or version
values in main.cpp
, be sure to update the corresponding variables in the myQtCrasher.pro file. The symbols.sh
scripts are responsible for running symbol-upload
on macOS and Linux. Likewise, symbols.bat
is responsible for running symbol-upload
on Windows. If the values passed to symbols.sh
or symbols.bat
via the QMAKE_POST_LINK
command are wrong then you will not see file names or line numbers in your crash reports.
If you have any additional questions, please email our support team, join us on Discord, or reach out via the chat in our web application.