4

Recently, homebrew decided to remove clang-omp from the list of formulae available to install from. Is there any way to retrieve it? Or would I have to download and build clang-omp bit manually?

coatless
  • 171

1 Answers1

3

Okay, so after looking at how packages leave homebrew's repo. To acquire a "removed" install, one only needs to either:

brew install homebrew/boneyard/<formula>

OR

brew tap homebrew/boneyard
brew install <formula>

So, in the case of clang-omp, it would be with:

brew install homebrew/boneyard/clang-omp
coatless
  • 171