aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Nagel2014-09-18 10:09:14 -0500
committerJack Nagel2014-09-18 10:21:49 -0500
commita7c5a31a2c11239dce83a41d350682a36987aa44 (patch)
tree29fecd359fe464d8f64fd3ce15733d467fa723aa
parent48342c913a747d16a4741ad8e036608a877555d1 (diff)
downloadhomebrew-a7c5a31a2c11239dce83a41d350682a36987aa44.tar.bz2
Xcode 6.0.1
Closes #32394.
-rw-r--r--Library/Homebrew/os/mac.rb1
-rw-r--r--Library/Homebrew/os/mac/xcode.rb8
2 files changed, 6 insertions, 3 deletions
diff --git a/Library/Homebrew/os/mac.rb b/Library/Homebrew/os/mac.rb
index 8d9d4178f..5d35790ce 100644
--- a/Library/Homebrew/os/mac.rb
+++ b/Library/Homebrew/os/mac.rb
@@ -207,6 +207,7 @@ module OS
"5.1" => { :clang => "5.1", :clang_build => 503 },
"5.1.1" => { :clang => "5.1", :clang_build => 503 },
"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 },
}
diff --git a/Library/Homebrew/os/mac/xcode.rb b/Library/Homebrew/os/mac/xcode.rb
index a29192fd2..5cf40277d 100644
--- a/Library/Homebrew/os/mac/xcode.rb
+++ b/Library/Homebrew/os/mac/xcode.rb
@@ -13,7 +13,7 @@ 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 "5.1.1"
+ when "10.9" then "6.0.1"
when "10.10" then "6.1"
else
# Default to newest known version of Xcode for unreleased OSX versions.
@@ -160,8 +160,10 @@ module OS
end
def latest_version
- if MacOS.version >= "10.8"
- "503.0.40"
+ case MacOS.version
+ when "10.10" then "600.0.54"
+ when "10.9" then "600.0.51"
+ when "10.8" then "503.0.40"
else
"425.0.28"
end