CrashCatch¶
๐ฅ A modern, single-header crash reporting library for C++ on Windows.
๐ What is CrashCatch?¶
CrashCatch is a zero-dependency, header-only crash reporting library for C++ applications.
It captures crashes, generates .dmp
and .txt
files, includes stack traces, and can show a GUI-friendly message box โ all from a single include.
โก Quick Start¶
Zero Config (Auto-init)¶
#define CRASHCATCH_AUTO_INIT
#include "CrashCatch.hpp"
int main() {
int* ptr = nullptr;
*ptr = 42; // simulated crash
}
One-Liner Setup¶
Full Config Example¶
#include "CrashCatch.hpp"
int main() {
CrashCatch::Config config;
config.appVersion = "1.0.0";
config.buildConfig = "Release";
config.additionalNotes = "Test build";
config.showCrashDialog = true;
config.onCrash = [] {
std::cout << "Cleaning up before crash...\n";
};
CrashCatch::initialize(config);
int* ptr = nullptr;
*ptr = 42;
}
๐ฆ Installing with CMake¶
Then in another project:
๐งช Examples¶
Explore working examples in the GitHub repo: - ZeroConfig - OneLiner - FullConfig - ThreadCrash - DivideByZero
๐ธ Screenshots¶
๐ Features¶
- โ Header-only โ drop-in, no dependencies
- โ
.dmp
and.txt
crash logs - โ Symbol resolution for stack trace
- โ GUI message box support
- โ CMake + CI friendly
- ๐ Linux/macOS and remote reporting coming soon
๐ License¶
MIT License โ created and maintained by Keith Pottratz
GitHub Repo
Created by Keith Pottratz
MIT Licensed