{"id":31156001,"url":"https://github.com/matthewoestreich/z3-static-build","last_synced_at":"2026-05-19T10:01:35.591Z","repository":{"id":303101319,"uuid":"1014410412","full_name":"matthewoestreich/z3-static-build","owner":"matthewoestreich","description":"Automated static builds of Z3 Theorem Prover for multiple platforms using GitHub Actions","archived":false,"fork":false,"pushed_at":"2025-07-13T02:34:28.000Z","size":6474,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-13T02:37:38.685Z","etag":null,"topics":["c","cpp","smt","smt-solver","z3","z3-prover","z3-smt-solver","z3-solver"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/matthewoestreich.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,"zenodo":null}},"created_at":"2025-07-05T17:07:15.000Z","updated_at":"2025-07-13T02:34:31.000Z","dependencies_parsed_at":"2025-07-05T18:38:28.854Z","dependency_job_id":"0cd5186e-c8d8-4221-aed6-a1a2276c0cd9","html_url":"https://github.com/matthewoestreich/z3-static-build","commit_stats":null,"previous_names":["matthewoestreich/z3-static-build"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/matthewoestreich/z3-static-build","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matthewoestreich%2Fz3-static-build","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matthewoestreich%2Fz3-static-build/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matthewoestreich%2Fz3-static-build/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matthewoestreich%2Fz3-static-build/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/matthewoestreich","download_url":"https://codeload.github.com/matthewoestreich/z3-static-build/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matthewoestreich%2Fz3-static-build/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":275830094,"owners_count":25536277,"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","status":"online","status_checked_at":"2025-09-18T02:00:09.552Z","response_time":77,"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":["c","cpp","smt","smt-solver","z3","z3-prover","z3-smt-solver","z3-solver"],"created_at":"2025-09-18T20:49:28.023Z","updated_at":"2025-09-18T20:49:32.846Z","avatar_url":"https://github.com/matthewoestreich.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# z3-static-build\n\nAutomated static builds of [Z3 Theorem Prover](https://github.com/Z3Prover/z3) for multiple platforms using GitHub Actions.\n\n## Overview\n\nThis repository provides prebuilt static libraries of Z3 for:\n\n- Linux (x64)  \n- macOS (x64 and arm64)  \n- Windows (x64)  \n\nBuilds are generated automatically on GitHub Actions and published as [GitHub Releases](https://github.com/matthewoestreich/z3-static-build/releases).\n\nUse these static libraries to link Z3 easily in your C or C++ projects without needing to build Z3 from source or worry about `.dll` files.\n\n## Features\n\n- Cross-platform static library builds using GitHub Actions  \n- Uses the official Z3 source code, pinned to a specific version  \n- Includes necessary headers for integration  \n- Ready-to-use `.a` (static libs) or `.lib` (Windows) binaries  \n\n## Usage\n\n### Download Prebuilt Binaries\n\nGo to the [Releases page](https://github.com/matthewoestreich/z3-static-build/releases) and download the appropriate archive for your platform.\n\n### Integrate into Your Project\n\n1. Extract the archive.  \n2. Include headers from the `include/` directory.  \n3. Link against the static library found in the `lib/\u003cplatform\u003e/` directory.  \n\nExample CMake snippet:\n\n```cmake\ninclude_directories(path/to/z3-static-build/include)\nlink_directories(path/to/z3-static-build/lib/\u003cplatform\u003e)\n\nadd_executable(your_executable main.c)\ntarget_link_libraries(your_executable PRIVATE z3)\n```\n\n## Build from Source\n\nIf you want to rebuild Z3 yourself, you can run the build script locally:\n\n```bash\nbash scripts/build.sh\n```\n\n*Note:* This requires Python, CMake, and a C++ compiler installed.\n\n## GitHub Actions\n\nBuilds are triggered on pushes to the `main` branch and on manual dispatch via the GitHub Actions UI.\n\nArtifacts are uploaded for each platform in the \"archive\" directory and published as releases. \n\nThe \"archive\" directory is a folder named after the Z3 version, current platform, and current architecture. So if you were on `Linux x86_64` and building Z3 `v1.1.1` the \"archive\" folder would be: `z3-1.1.1-linux-x64`\n\n## Create Release\n\n```bash\n# From root of this project\nbash scripts/create_release.sh vX.X.X\n# Where 'vX.X.X' is the tag (eg. v1.0.0)\n```\n\n## Delete Tag \n\n**This will delete both the remote and local tag**\n\nIf something went wrong during a build, you should delete 'that' tag before you try again.\n\n```bash\n# From root of this project\nbash scripts/delete_tag.sh vX.X.X\n# Where 'vX.X.X' is the tag (eg. v1.0.0)\n```\n\n⚠️ If there are any releases tied to the tag you just deleted, don't forget to manually remove the release!\n\n## Licenses\n\nZ3 [MIT License](https://github.com/Z3Prover/z3/blob/master/LICENSE.txt).\n\n## References\n\n- [Z3 GitHub repository](https://github.com/Z3Prover/z3)  \n- [Z3 Documentation](https://z3prover.github.io/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmatthewoestreich%2Fz3-static-build","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmatthewoestreich%2Fz3-static-build","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmatthewoestreich%2Fz3-static-build/lists"}