aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorDominyk Tiller2014-12-03 02:40:22 +0000
committerMike McQuaid2014-12-03 11:50:40 +0000
commit0a329dfcb521b51579e186bbe242a4a6e076b90f (patch)
tree770cf0c76d91382848b01b69019844d57ad089c4 /Library
parentddaabae7a9e1bfb826c473f77dad5fb4170c7507 (diff)
downloadhomebrew-0a329dfcb521b51579e186bbe242a4a6e076b90f.tar.bz2
os: xcode bump
Bumps to the latest Xcode 6.1.1. Closes #34632. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/os/mac.rb1
-rw-r--r--Library/Homebrew/os/mac/xcode.rb10
2 files changed, 6 insertions, 5 deletions
diff --git a/Library/Homebrew/os/mac.rb b/Library/Homebrew/os/mac.rb
index 5d35790ce..e1f838862 100644
--- a/Library/Homebrew/os/mac.rb
+++ b/Library/Homebrew/os/mac.rb
@@ -209,6 +209,7 @@ module OS
"6.0" => { :clang => "6.0", :clang_build => 600 },
"6.0.1" => { :clang => "6.0", :clang_build => 600 },
"6.1" => { :clang => "6.0", :clang_build => 600 },
+ "6.1.1" => { :clang => "6.0", :clang_build => 600 },
}
def compilers_standard?
diff --git a/Library/Homebrew/os/mac/xcode.rb b/Library/Homebrew/os/mac/xcode.rb
index a76db70c6..c4e53504f 100644
--- a/Library/Homebrew/os/mac/xcode.rb
+++ b/Library/Homebrew/os/mac/xcode.rb
@@ -13,12 +13,12 @@ module OS
when "10.6" then "3.2.6"
when "10.7" then "4.6.3"
when "10.8" then "5.1.1"
- when "10.9" then "6.1"
- when "10.10" then "6.1"
+ when "10.9" then "6.1.1"
+ when "10.10" then "6.1.1"
else
# Default to newest known version of Xcode for unreleased OSX versions.
if MacOS.version > "10.10"
- "6.1"
+ "6.1.1"
else
raise "Mac OS X '#{MacOS.version}' is invalid"
end
@@ -160,8 +160,8 @@ module OS
def latest_version
case MacOS.version
- when "10.10" then "600.0.54"
- when "10.9" then "600.0.54"
+ when "10.10" then "600.0.56"
+ when "10.9" then "600.0.56"
when "10.8" then "503.0.40"
else
"425.0.28"