How to apply "build from source" option recursively? #3367
-
Hi here! |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 5 replies
-
Bottles from older OS versions should work just fine. There might be a environment variable for source builds but it'll really make your life much harder than using the Monterey bottles. |
Beta Was this translation helpful? Give feedback.
-
Try brew install --build-from-source $(brew deps foo) foo If that doesn't work, for f in $(brew deps -n foo) foo
do
brew install --build-from-source $f || break
done |
Beta Was this translation helpful? Give feedback.
-
It should be falling back to macOS 12 bottles. What does |
Beta Was this translation helpful? Give feedback.
It should be falling back to macOS 12 bottles. What does
brew config
output?