-
Additional Info
Output of
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
-
I think homebrew only support the bottle for linux with intel not aarch64. So there is no pre-build packages and all of the dependencies are built from source. |
Beta Was this translation helpful? Give feedback.
-
I don't think there's a way to implicitly build dependencies from source, and I can see a good reason for that: if So I think you're pretty much stuck with |
Beta Was this translation helpful? Give feedback.
I don't think there's a way to implicitly build dependencies from source, and I can see a good reason for that: if
brew install -s gh
also builtgo
from source without marking it as "installed by request", thenbrew cleanup
andbrew rm
can auto-remove it, which would piss off most people considering how longgo
takes to build. If that happened togcc
,rust
, and every other heavyweight dev toolchain on your system, I'm guessing you'd be about ready to toss your machine out a high window. 😁So I think you're pretty much stuck with
brew install -s $(brew deps gh) gh
.