{"id":20683174,"url":"https://github.com/chimehq/coresymbolication","last_synced_at":"2025-06-26T08:34:10.031Z","repository":{"id":63906872,"uuid":"375522144","full_name":"ChimeHQ/CoreSymbolication","owner":"ChimeHQ","description":"Headers and package for CoreSymbolication","archived":false,"fork":false,"pushed_at":"2024-07-09T14:38:13.000Z","size":923,"stargazers_count":11,"open_issues_count":1,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-05-27T13:56:03.183Z","etag":null,"topics":["crash-reporting","macos","swift","symbolication"],"latest_commit_sha":null,"homepage":"","language":"Swift","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/ChimeHQ.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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,"zenodo":null},"funding":{"github":["mattmassicotte"]}},"created_at":"2021-06-10T00:16:47.000Z","updated_at":"2024-08-08T10:36:58.000Z","dependencies_parsed_at":"2023-12-07T12:40:47.330Z","dependency_job_id":"65756629-6955-4d38-884e-d8378a339f26","html_url":"https://github.com/ChimeHQ/CoreSymbolication","commit_stats":{"total_commits":7,"total_committers":1,"mean_commits":7.0,"dds":0.0,"last_synced_commit":"3c192cc3f291d5b46d26065b2077bce2bfa52bb0"},"previous_names":["stacksift/coresymbolication"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/ChimeHQ/CoreSymbolication","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ChimeHQ%2FCoreSymbolication","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ChimeHQ%2FCoreSymbolication/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ChimeHQ%2FCoreSymbolication/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ChimeHQ%2FCoreSymbolication/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ChimeHQ","download_url":"https://codeload.github.com/ChimeHQ/CoreSymbolication/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ChimeHQ%2FCoreSymbolication/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262030503,"owners_count":23247668,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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-reporting","macos","swift","symbolication"],"created_at":"2024-11-16T22:15:39.495Z","updated_at":"2025-06-26T08:34:10.014Z","avatar_url":"https://github.com/ChimeHQ.png","language":"Swift","funding_links":["https://github.com/sponsors/mattmassicotte"],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n\n[![Build Status][build status badge]][build status]\n[![Platforms][platforms badge]][platforms]\n[![Matrix][matrix badge]][matrix]\n\n\u003c/div\u003e\n\n# CoreSymbolication\nCoreSymbolication provides a very powerful system for looking up and extracting symbolic information from mach-o executables, dyld shared caches, and dSYMs.\n\nThere are two parts. The private C API itself is wrapped up in the `CoreSymbolication` target, and a Swift wrapper is provided with `SwiftCoreSymbolication`.\n\nThe private header is definitely not complete. But, if there's something you need/want, open up an issue and we can look into it together.\n\nOne quick note. I cannot figure out how to craft a modulemap that will allow SPM to handle linking. This means that you need to add some special linker flags to any executable target that uses this as a dependency.\n\n```swift\nlinkerSettings: [\n  .unsafeFlags([\n  \"-Xlinker\", \"-F\",\n  \"-Xlinker\", \"/System/Library/PrivateFrameworks\",\n   \"-Xlinker\", \"-framework\",\n   \"-Xlinker\", \"CoreSymbolication\",\n]),\n```\n\nIf you are here, you might also be interested in gSYM, an efficient format used by the LLVM project for symbolication. I also put together a [go library](https://github.com/ChimeHQ/gogsym) that can be used to consume gsym files.\n\n## Integration\n\n### Swift Package Manager\n\n```swift\ndependencies: [\n    .package(url: \"https://github.com/ChimeHQ/CoreSymbolication\")\n],\ntargets: [\n    .target(\n        name: \"UseCFunctionality\",\n        dependencies: [\"CoreSymbolication\"]\n    ),\n    .target(\n        name: \"UseSwiftWrapper\",\n        dependencies: [.product(name: \"SwiftCoreSymbolication\", package: \"CoreSymbolication\")]\n    ),\n]\n```\n\n## Contributing and Collaboration\n\nI would love to hear from you! Issues or pull requests work great. A [Matrix space][matrix] is also available for live help, but I have a strong bias towards answering in the form of documentation.\n\nI prefer collaboration, and would love to find ways to work together if you have a similar project.\n\nI prefer indentation with tabs for improved accessibility. But, I'd rather you use the system you want and make a PR than hesitate because of whitespace.\n\nBy participating in this project you agree to abide by the [Contributor Code of Conduct](CODE_OF_CONDUCT.md).\n\n[build status]: https://github.com/ChimeHQ/CoreSymbolication/actions\n[build status badge]: https://github.com/ChimeHQ/CoreSymbolication/workflows/CI/badge.svg\n[platforms]: https://swiftpackageindex.com/ChimeHQ/CoreSymbolication\n[platforms badge]: https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2FChimeHQ%2FCoreSymbolication%2Fbadge%3Ftype%3Dplatforms\n[matrix]: https://matrix.to/#/%23chimehq%3Amatrix.org\n[matrix badge]: https://img.shields.io/matrix/chimehq%3Amatrix.org?label=Matrix\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchimehq%2Fcoresymbolication","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchimehq%2Fcoresymbolication","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchimehq%2Fcoresymbolication/lists"}