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

Side by Side Diff: dart/tools/gyp/find_mac_gcc_version.py

Issue 119673004: Version 1.1.0-dev.5.2 (Closed) Base URL: http://dart.googlecode.com/svn/trunk/
Patch Set: Created 6 years, 11 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « dart/tools/gyp/configurations_xcode.gypi ('k') | dart/tools/gyp/find_mac_sdk.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 2 # Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
3 # for details. All rights reserved. Use of this source code is governed by a 3 # for details. All rights reserved. Use of this source code is governed by a
4 # BSD-style license that can be found in the LICENSE file. 4 # BSD-style license that can be found in the LICENSE file.
5 5
6 import re 6 import re
7 import subprocess 7 import subprocess
8 import sys 8 import sys
9 9
10 def main(): 10 def main():
(...skipping 17 matching lines...) Expand all
28 elif (major == 4 and minor >= 5) or major == 5: 28 elif (major == 4 and minor >= 5) or major == 5:
29 # XCode seems to select the specific clang version automatically 29 # XCode seems to select the specific clang version automatically
30 return 'com.apple.compilers.llvm.clang.1_0' 30 return 'com.apple.compilers.llvm.clang.1_0'
31 else: 31 else:
32 raise Exception('Unknown XCode Version "%s"' % stdout) 32 raise Exception('Unknown XCode Version "%s"' % stdout)
33 else: 33 else:
34 raise Exception('Could not parse output of xcodebuild "%s"' % stdout) 34 raise Exception('Could not parse output of xcodebuild "%s"' % stdout)
35 35
36 if __name__ == '__main__': 36 if __name__ == '__main__':
37 if sys.platform != 'darwin': 37 if sys.platform != 'darwin':
38 raise Exception("This script only runs on Mac") 38 #raise Exception("This script only runs on Mac")
39 print main() 39 # If we aren't on Mac, print out a dummy version string; it won't be used.
40 print 'X.X'
41 else:
42 print main()
OLDNEW
« no previous file with comments | « dart/tools/gyp/configurations_xcode.gypi ('k') | dart/tools/gyp/find_mac_sdk.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698