Skip to content

Crashpad Build v20260210-d47b05a

Latest

Choose a tag to compare

@github-actions github-actions released this 01 Mar 03:23
ebec7e0

Crashpad Libraries - v20260210-d47b05a

Ready-to-use Crashpad libraries for all platforms, built from the latest Crashpad source.

Quick Start

  1. Download the archive for your platform below
  2. Extract to your project directory
  3. Point your build system to the extracted files
  4. See the sample project for integration examples

Platforms Included

  • Windows: MSVC-compatible .lib files + crashpad_handler.exe
  • macOS: Universal .a files + crashpad_handler
  • Linux: GCC-compatible .a files + crashpad_handler

Directory Structure

crashpad-<platform>/
├── debug/
│   ├── lib/           # Debug libraries
│   └── bin/           # Debug crashpad_handler
├── release/
│   ├── lib/           # Release libraries  
│   └── bin/           # Release crashpad_handler
├── include/
│   ├── crashpad/      # Crashpad headers
│   └── mini_chromium/ # Mini Chromium headers
└── build_info.txt     # Build metadata

Security Verification

Verify downloads using the provided .sha256 files:

# Linux/macOS
sha256sum -c crashpad-<platform>-*.tar.gz.sha256

# Windows PowerShell
Get-FileHash crashpad-<platform>-*.tar.gz -Algorithm SHA256

Integration Tips

  • Use debug libraries during development for better crash reporting
  • Use release libraries for production builds
  • Ensure crashpad_handler is deployed alongside your application
  • See build_info.txt in each archive for detailed build information

Build Details: