Download package binary for different OS version and architecture #5951
-
Output of
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
You can run Note: although bottles are gzipped tarballs, they are not ready for use in general (some install-time processing could be needed). You can probably force installing the bottle with |
Beta Was this translation helpful? Give feedback.
-
Thanks, it works. I only need .a lib, because the program linked with cross-built libluajit.a is having SIGSEG problem when it is built for release. |
Beta Was this translation helpful? Give feedback.
You can run
brew fetch --bottle-tag=monterey $formula
and the bottle (binary package) will be available at the location specified bybrew --cache --bottle-tag=monterey $formula
.Note: although bottles are gzipped tarballs, they are not ready for use in general (some install-time processing could be needed). You can probably force installing the bottle with
brew install "$(brew --cache --bottle-tag=monterey $formula)"
but by doing so you're on your own.