Skip to content

CrashCatch

๐Ÿ’ฅ A modern, single-header crash reporting library for C++ on Windows.

License: MIT Header-only Platform C++17 CI


๐Ÿš€ 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

#include "CrashCatch.hpp"

int main() {
    CrashCatch::enable();
    int* ptr = nullptr;
    *ptr = 42;
}

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

mkdir build && cd build
cmake .. -DCMAKE_INSTALL_PREFIX=./install
cmake --build . --target install

Then in another project:

find_package(CrashCatch REQUIRED)
target_link_libraries(MyApp PRIVATE CrashCatch::CrashCatch)


๐Ÿงช Examples

Explore working examples in the GitHub repo: - ZeroConfig - OneLiner - FullConfig - ThreadCrash - DivideByZero

View Examples Folder


๐Ÿ“ธ Screenshots

ZeroConfig OneLiner FullConfig CrashDialog


๐Ÿ›  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