add self-contained Homebrew bottle packages for macOS - #98
Merged
Merged
Conversation
Add `packages.brew.<version>` exposing Zig builds from Homebrew official binary bottles. These bottles carry macOS-specific patches that the upstream ziglang.org tarballs do not include. Homebrew bottles are dynamically linked against Homebrew-provided LLVM, LLD, and zstd. The bottles ship with @@HOMEBREW_PREFIX@@ relocation markers in their Mach-O load commands instead of real paths, expecting Homebrew to rewrite them at install time. To make the derivations fully self-contained without requiring a Homebrew installation at runtime, the builder downloads the dependency bottles too, then walks the dylib closure starting from the zig binary using otool -L. Each referenced non-system dylib is copied into $out/lib/brew/, its install name is rewritten to @rpath/, and the zig binary gets an rpath of @executable_path/../lib/brew. Bundled dylibs get @loader_path so they find each other. Every patched Mach-O is re-signed with an ad-hoc signature since install_name_tool invalidates the original code signature, and macOS kills unsigned arm64 binaries.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add
packages.brew.<version>exposing Zig builds from Homebrew official binary bottles. These bottles carry macOS-specific patches that the upstream ziglang.org tarballs do not include.This includes a script to update but I'll just do this manually for new Zig releases since its infrequent and I don't fully trust the script.