Chromium Code Reviews| 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 d70f5bf9c7a5468db1d8dd0b55d3669650c9de7a..40670ec49b4173f08e6da1c914a77d01fba93916 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: |
| + elif (major == 4 and minor >= 5) or major == 5 or major == 6: |
| # XCode seems to select the specific clang version automatically |
| return 'com.apple.compilers.llvm.clang.1_0' |
|
Ivan Posva
2014/09/23 22:58:36
Have you verified that this is really the right ve
|
| else: |