Xcode 6.0.1

Closes Homebrew/homebrew#32394.
This commit is contained in:
Jack Nagel 2014-09-18 10:09:14 -05:00
parent 72d74053a2
commit 35618c8bfe
2 changed files with 6 additions and 3 deletions

View File

@ -207,6 +207,7 @@ module OS
"5.1" => { :clang => "5.1", :clang_build => 503 }, "5.1" => { :clang => "5.1", :clang_build => 503 },
"5.1.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" => { :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" => { :clang => "6.0", :clang_build => 600 },
} }

View File

@ -13,7 +13,7 @@ module OS
when "10.6" then "3.2.6" when "10.6" then "3.2.6"
when "10.7" then "4.6.3" when "10.7" then "4.6.3"
when "10.8" then "5.1.1" 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" when "10.10" then "6.1"
else else
# Default to newest known version of Xcode for unreleased OSX versions. # Default to newest known version of Xcode for unreleased OSX versions.
@ -160,8 +160,10 @@ module OS
end end
def latest_version def latest_version
if MacOS.version >= "10.8" case MacOS.version
"503.0.40" when "10.10" then "600.0.54"
when "10.9" then "600.0.51"
when "10.8" then "503.0.40"
else else
"425.0.28" "425.0.28"
end end