Skip to content
Snippets Groups Projects
Unverified Commit ebc764e8 authored by Mike McQuaid's avatar Mike McQuaid
Browse files

os/mac/xcode: clarify latest_version comes from clang.

parent 2d5f6dd7
No related branches found
No related tags found
No related merge requests found
...@@ -231,7 +231,7 @@ module OS ...@@ -231,7 +231,7 @@ module OS
end end
end end
def latest_version def latest_clang_version
# As of Xcode 8 CLT releases are no longer in sync with Xcode releases # As of Xcode 8 CLT releases are no longer in sync with Xcode releases
# on the older supported platform for that Xcode release, i.e there's no # on the older supported platform for that Xcode release, i.e there's no
# CLT package for 10.11 that contains the Clang version from Xcode 8. # CLT package for 10.11 that contains the Clang version from Xcode 8.
...@@ -266,7 +266,7 @@ module OS ...@@ -266,7 +266,7 @@ module OS
clang_version = detect_clang_version clang_version = detect_clang_version
return false unless clang_version return false unless clang_version
::Version.new(clang_version) < latest_version ::Version.new(clang_version) < latest_clang_version
end end
def detect_clang_version def detect_clang_version
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment