{"id":16164106,"url":"https://github.com/rodlie/breakdown","last_synced_at":"2026-04-20T03:01:54.412Z","repository":{"id":63976507,"uuid":"252367375","full_name":"rodlie/breakdown","owner":"rodlie","description":"A library (and tools) for parsing crash dumps","archived":false,"fork":false,"pushed_at":"2023-05-02T15:59:24.000Z","size":16406,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-07T04:47:14.898Z","etag":null,"topics":["crash-details","crash-dump","crash-reporting","google-breakpad","linux","macos","mingw","natron","parsing-crash-dumps","windows"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rodlie.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-04-02T05:51:24.000Z","updated_at":"2023-05-02T15:56:10.000Z","dependencies_parsed_at":"2024-12-20T16:48:00.149Z","dependency_job_id":null,"html_url":"https://github.com/rodlie/breakdown","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/rodlie/breakdown","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rodlie%2Fbreakdown","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rodlie%2Fbreakdown/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rodlie%2Fbreakdown/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rodlie%2Fbreakdown/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rodlie","download_url":"https://codeload.github.com/rodlie/breakdown/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rodlie%2Fbreakdown/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32031070,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-20T00:18:06.643Z","status":"online","status_checked_at":"2026-04-20T02:00:06.527Z","response_time":94,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["crash-details","crash-dump","crash-reporting","google-breakpad","linux","macos","mingw","natron","parsing-crash-dumps","windows"],"created_at":"2024-10-10T02:45:21.578Z","updated_at":"2026-04-20T03:01:54.390Z","avatar_url":"https://github.com/rodlie.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Breakdown\n\nVarious applications and libraries for dumping symbols from binaries files and parsing crash dumps on Windows (MinGW-only), macOS (untested) and Linux.\n\nBreakdown uses a [fork](https://github.com/NatronGitHub/breakpad) of Google Breakpad.\n\n## Build and install\nRequires pkg-config, CMake (3.0+), a c++11 compatible compiler (only GCC tested) and libzip.\n\n```\ngit clone https://github.com/rodlie/breakdown\ncd breakdown\ngit submodule update -i --recursive\nmkdir build \u0026\u0026 cd build\ncmake -DCMAKE_INSTALL_PREFIX=/usr .. \u0026\u0026 make\nmake DESTDIR=\u003cPACKAGE_LOCATION\u003e install\n```\n```\n\u003cPACKAGE_LOCATION\u003e\n└── usr\n    ├── bin\n    │   ├── breakdown-dumper\n    │   └── breakdown-parser\n    ├── include\n    │   └── Breakdown\n    │       └── breakdown.h\n    ├── lib64\n    │   ├── libBreakdown.so -\u003e libBreakdown.so.2\n    │   ├── libBreakdown.so.2 -\u003e libBreakdown.so.2.0.0\n    │   ├── libBreakdown.so.2.0.0\n    │   └── pkgconfig\n    │       └── breakdown.pc\n    └── share\n        └── doc\n            └── Breakdown-2.0.0\n                ├── LICENSE\n                ├── LICENSE.breakpad\n                └── README.md\n```\n\n## Symbols Storage\n\nSymbols are stored using the following directory structure:\n\n* ``\u003cSYMBOLS_FOLDER\u003e``\n  * ``\u003cFILENAME_FOLDER\u003e`` *(example: ``Natron-bin``)*\n    * ``\u003cSYMBOL_ID_FOLDER\u003e`` *(example: ``69CDA01A0F236F7C71CD19E5A20A21AC0``)*\n      * ``\u003cZIP_FILE\u003e`` *(example: ``Natron-bin.sym.zip``)*\n\n``\u003cFILENAME_FOLDER\u003e`` and ``\u003cSYMBOL_ID_FOLDER\u003e`` must match line 1 in the symbol file.\n\nExample : ``MODULE Linux x86_64 69CDA01A0F236F7C71CD19E5A20A21AC0 Natron-bin``\n\n**Note that Breakdown only supports zipped symbols (``filename.sym.zip``)**\n\n## Creating Symbols\n\nExample:\n```\n\nbreakdown-dumper Natron-bin \u003e Natron-bin.sym\nexport SYMBOL_BIN=`head -1 Natron-bin.sym | awk '{print $5}'`\nexport SYMBOL_ID=`head -1 Natron-bin.sym | awk '{print $4}'`\nmkdir -p symbols/$SYMBOL_BIN/$SYMBOL_ID\nzip -9 Natron-bin.sym.zip Natron-bin.sym\nmv Natron-bin.sym.zip symbols/$SYMBOL_BIN/$SYMBOL_ID/\n```\n```\nsymbols\n└── Natron-bin\n    └── 69CDA01A0F236F7C71CD19E5A20A21AC0\n        └── Natron-bin.sym.zip\n\n2 directories, 1 file\n```\n\n## Usage Example (library)\n\n```\n#include \u003cbreakdown.h\u003e\n\nstd::string filename = \"crash.dmp\";\nstd::vector\u003cstd::string\u003e storage;\nstorage.push_back(\"symbols\");\nstd::string result = Breakdown::generateCrashResultPlainText(filename, storage);\n```\n\n## Usage Example (application)\n\n```\nbreakdown-parser symbols crash.dmp \u003e result.txt\n```\n```\nOS       : Linux (0.0.0 Linux 4.4.172 #2 SMP Wed Jan 30 17:11:07 CST 2019 x86_64)\nTYPE     : SIGSEGV /0x00000000\n\nMODULE   : Natron-bin\nFUNCTION : Natron::crash_application()\nSOURCE   : Settings.cpp:2228\n\n...\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frodlie%2Fbreakdown","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frodlie%2Fbreakdown","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frodlie%2Fbreakdown/lists"}