aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/formula.rb
diff options
context:
space:
mode:
authorMike McQuaid2016-05-22 09:40:08 +0100
committerMike McQuaid2016-05-22 09:40:08 +0100
commit375efe09455218d9929e41f16317074ccdf50f2a (patch)
tree4d7f48fd6cd36e00c5e24712e8f7a812e042253d /Library/Homebrew/formula.rb
parent7b2d1a5b08f4da122d995bdf8ba437e3cb25dc95 (diff)
downloadbrew-375efe09455218d9929e41f16317074ccdf50f2a.tar.bz2
Remove LLVM-GCC support. (#252)
At this point it's never a good compiler to use so let's just remove it.
Diffstat (limited to 'Library/Homebrew/formula.rb')
-rw-r--r--Library/Homebrew/formula.rb7
1 files changed, 1 insertions, 6 deletions
diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb
index 57e7013c8..c621d6c37 100644
--- a/Library/Homebrew/formula.rb
+++ b/Library/Homebrew/formula.rb
@@ -1988,12 +1988,7 @@ class Formula
# Marks the {Formula} as failing with a particular compiler so it will fall back to others.
# For Apple compilers, this should be in the format:
- # <pre>fails_with :llvm do # :llvm is really llvm-gcc
- # build 2334
- # cause "Segmentation fault during linking."
- # end
- #
- # fails_with :clang do
+ # <pre>fails_with :clang do
# build 600
# cause "multiple configure and compile errors"
# end</pre>