Today, when updating Homebrew and packages, brew update && brew upgrade failed with the error:
Error: Calling needs :cxx11 is disabled! There is no replacement.
Please report this to the fbkarsdorp/lamachine tap:
/usr/local/Homebrew/Library/Taps/fbkarsdorp/homebrew-lamachine/Formula/mbt.rb:10
Line 10 in mbt.rb is needs :cxx11. I'm guessing that this specific syntax is no longer allowed by Homebrew. Looking at formulae in Homebrew-core that call ENV.cxx11, maybe it's not necessary to even use needs :cxx11, as I haven't seen it elsewhere.
Today, when updating Homebrew and packages,
brew update && brew upgrade
failed with the error:Line 10 in mbt.rb is
needs :cxx11
. I'm guessing that this specific syntax is no longer allowed by Homebrew. Looking at formulae in Homebrew-core that callENV.cxx11
, maybe it's not necessary to even useneeds :cxx11
, as I haven't seen it elsewhere.