Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2054)

Unified Diff: tools/gyp/find_mac_gcc_version.py

Issue 1343393004: SDK gyp: support Xcode V7 (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: cl feedback Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/gyp/find_mac_gcc_version.py
diff --git a/tools/gyp/find_mac_gcc_version.py b/tools/gyp/find_mac_gcc_version.py
index 40670ec49b4173f08e6da1c914a77d01fba93916..e7d0f10c6e4d32c42c5ecdaa763e36861e0a7057 100755
--- a/tools/gyp/find_mac_gcc_version.py
+++ b/tools/gyp/find_mac_gcc_version.py
@@ -25,7 +25,7 @@ def main():
return '4.2'
elif major == 4 and minor < 5:
return 'com.apple.compilers.llvmgcc42'
- elif (major == 4 and minor >= 5) or major == 5 or major == 6:
+ elif (major == 4 and minor >= 5) or major => 5:
Paul Berry 2015/09/22 12:38:47 This is a syntax error. I think you mean ">=" ins
# XCode seems to select the specific clang version automatically
return 'com.apple.compilers.llvm.clang.1_0'
else:
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698