aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMike McQuaid2012-01-16 19:47:44 +0000
committerMike McQuaid2012-01-16 21:00:24 +0000
commitc28779d4e09415da5997e65e268fdbee44314115 (patch)
tree07c71826875bb0befa0a25043c99e5ca8f28501a /Library
parent411d15d40754d1630ba974026d85f7df38f88e90 (diff)
downloadbrew-c28779d4e09415da5997e65e268fdbee44314115.tar.bz2
Bump highest seen LLVM version.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/formula.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb
index 4256cfb77..b781681f8 100644
--- a/Library/Homebrew/formula.rb
+++ b/Library/Homebrew/formula.rb
@@ -335,10 +335,10 @@ class Formula
def handle_llvm_failure llvm
if ENV.compiler == :llvm
- # version 2335 is the latest version as of Xcode 4.1, so it is the
+ # version 2336 is the latest version as of Xcode 4.2, so it is the
# latest version we have tested against so we will switch to GCC and
- # bump this integer when Xcode 4.2 is released. TODO do that!
- if llvm.build.to_i >= 2335
+ # bump this integer when Xcode 4.3 is released. TODO do that!
+ if llvm.build.to_i >= 2336
opoo "Formula will not build with LLVM, using GCC"
ENV.gcc :force => true
return