aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMartin Afanasjew2016-05-05 13:22:37 +0200
committerMike McQuaid2016-05-05 12:22:37 +0100
commitc55da93ff390fc5863e6c2967f345676c4aad569 (patch)
treefff46550a59d4a794900c6c3f2909e022f6abdf2 /Library
parent6f80b4688bce7b391093412def6e65c3b61cbd20 (diff)
downloadbrew-c55da93ff390fc5863e6c2967f345676c4aad569.tar.bz2
xcode: expect 7.3.1 on 10.11
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/os/mac.rb1
-rw-r--r--Library/Homebrew/os/mac/xcode.rb6
2 files changed, 4 insertions, 3 deletions
diff --git a/Library/Homebrew/os/mac.rb b/Library/Homebrew/os/mac.rb
index 5f8637f68..73e499d40 100644
--- a/Library/Homebrew/os/mac.rb
+++ b/Library/Homebrew/os/mac.rb
@@ -296,6 +296,7 @@ module OS
"7.2" => { :clang => "7.0", :clang_build => 700 },
"7.2.1" => { :clang => "7.0", :clang_build => 700 },
"7.3" => { :clang => "7.3", :clang_build => 703 },
+ "7.3.1" => { :clang => "7.3", :clang_build => 703 },
}
def compilers_standard?
diff --git a/Library/Homebrew/os/mac/xcode.rb b/Library/Homebrew/os/mac/xcode.rb
index f6447fbc8..65a294306 100644
--- a/Library/Homebrew/os/mac/xcode.rb
+++ b/Library/Homebrew/os/mac/xcode.rb
@@ -15,11 +15,11 @@ module OS
when "10.8" then "5.1.1"
when "10.9" then "6.2"
when "10.10" then "7.2.1"
- when "10.11" then "7.3"
+ when "10.11" then "7.3.1"
else
# Default to newest known version of Xcode for unreleased OSX versions.
if OS::Mac.prerelease?
- "7.3"
+ "7.3.1"
else
raise "OS X '#{MacOS.version}' is invalid"
end
@@ -172,7 +172,7 @@ module OS
def latest_version
case MacOS.version
- when "10.11" then "703.0.29"
+ when "10.11" then "703.0.31"
when "10.10" then "700.1.81"
when "10.9" then "600.0.57"
when "10.8" then "503.0.40"