diff options
| author | Dominyk Tiller | 2015-05-19 18:52:36 +0100 |
|---|---|---|
| committer | Mike McQuaid | 2015-05-21 13:55:02 +0100 |
| commit | ad467f0386221943483770473a94b1d239601323 (patch) | |
| tree | 7edca30b7ef7a75eaf600c50963b98aade44a3e0 /Library/Homebrew | |
| parent | 8b5787122061d115b1360f5e462f619e93af9a93 (diff) | |
| download | brew-ad467f0386221943483770473a94b1d239601323.tar.bz2 | |
os: support xcode 6.3.2
Closes Homebrew/homebrew#39909.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Homebrew')
| -rw-r--r-- | Library/Homebrew/os/mac.rb | 1 | ||||
| -rw-r--r-- | Library/Homebrew/os/mac/xcode.rb | 6 |
2 files changed, 4 insertions, 3 deletions
diff --git a/Library/Homebrew/os/mac.rb b/Library/Homebrew/os/mac.rb index fd19c3d12..6f496b849 100644 --- a/Library/Homebrew/os/mac.rb +++ b/Library/Homebrew/os/mac.rb @@ -213,6 +213,7 @@ module OS "6.2" => { :clang => "6.0", :clang_build => 600 }, "6.3" => { :clang => "6.1", :clang_build => 602 }, "6.3.1" => { :clang => "6.1", :clang_build => 602 }, + "6.3.2" => { :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 ace9b59f7..26382dea3 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.3.1" + when "10.10" then "6.3.2" else # Default to newest known version of Xcode for unreleased OSX versions. if MacOS.version > "10.10" - "6.3.1" + "6.3.2" else raise "Mac OS X '#{MacOS.version}' is invalid" end @@ -161,7 +161,7 @@ module OS def latest_version case MacOS.version - when "10.10" then "602.0.49" + when "10.10" then "602.0.53" when "10.9" then "600.0.57" when "10.8" then "503.0.40" else |
