diff options
| author | Dominyk Tiller | 2015-04-09 00:55:37 +0100 |
|---|---|---|
| committer | Mike McQuaid | 2015-04-09 11:25:15 +0100 |
| commit | 8ff6475301b4684e566958167bd0ae8f6d073e77 (patch) | |
| tree | 8598c4522d2f3b99e50f52c34b04d5a34afbf054 /Library | |
| parent | b430b48eff9b68a2e07642939784a1a395775efa (diff) | |
| download | homebrew-8ff6475301b4684e566958167bd0ae8f6d073e77.tar.bz2 | |
os: support xcode 6.3
It’s Christmas. New stable OS X version, new Swift version, new Xcode,
new CLT and a new Clang version.
Closes #38468.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/os/mac.rb | 1 | ||||
| -rw-r--r-- | Library/Homebrew/os/mac/xcode.rb | 9 |
2 files changed, 6 insertions, 4 deletions
diff --git a/Library/Homebrew/os/mac.rb b/Library/Homebrew/os/mac.rb index 1c014d934..6dd281ce7 100644 --- a/Library/Homebrew/os/mac.rb +++ b/Library/Homebrew/os/mac.rb @@ -211,6 +211,7 @@ module OS "6.1" => { :clang => "6.0", :clang_build => 600 }, "6.1.1" => { :clang => "6.0", :clang_build => 600 }, "6.2" => { :clang => "6.0", :clang_build => 600 }, + "6.3" => { :clang => "6.1", :clang_build => 602 }, } def compilers_standard? diff --git a/Library/Homebrew/os/mac/xcode.rb b/Library/Homebrew/os/mac/xcode.rb index 23b1194e1..2814f8c9f 100644 --- a/Library/Homebrew/os/mac/xcode.rb +++ b/Library/Homebrew/os/mac/xcode.rb @@ -14,11 +14,11 @@ module OS when "10.7" then "4.6.3" when "10.8" then "5.1.1" when "10.9" then "6.2" - when "10.10" then "6.2" + when "10.10" then "6.3" else # Default to newest known version of Xcode for unreleased OSX versions. if MacOS.version > "10.10" - "6.2" + "6.3" else raise "Mac OS X '#{MacOS.version}' is invalid" end @@ -117,7 +117,8 @@ module OS when 50 then "5.0" when 51 then "5.1" when 60 then "6.0" - else "6.0" + when 61 then "6.1" + else "6.1" end end end @@ -160,7 +161,7 @@ module OS def latest_version case MacOS.version - when "10.10" then "600.0.57" + when "10.10" then "602.0.49" when "10.9" then "600.0.57" when "10.8" then "503.0.40" else |
