def main(argv): parser = argparse.ArgumentParser() parser.add_argument('--symlink', help='Whether to create a symlink in the buildroot to the SDK.') parser.add_argument('--sdk', choices=['iphoneos', 'iphonesimulator'], help='Which SDK to find.') args = parser.parse_args() command = [ 'xcodebuild', '-version', '-sdk', args.sdk, 'Path' ] sdk_output = subprocess.check_output(command).strip() if args.symlink: symlink_target = os.path.join(args.symlink, 'SDKs', os.path.basename(sdk_output)) symlink(sdk_output, symlink_target) frameworks_location = os.path.join(sdk_output, '..', '..', 'Library', 'Frameworks') frameworks_symlink = os.path.join(args.symlink, 'Library', 'Frameworks') symlink(frameworks_location, frameworks_symlink) sdk_output = symlink_target print(sdk_output) return 0
def main(argv): parser = argparse.ArgumentParser() parser.add_argument( '--symlink', help='Whether to create a symlink in the buildroot to the SDK.') args = parser.parse_args() path = subprocess.check_output(['/usr/bin/env', 'xcode-select', '-p']).decode('utf-8').strip() path = os.path.join(path, "Toolchains", "XcodeDefault.xctoolchain") assert os.path.exists(path) if args.symlink: symlink_target = os.path.join(args.symlink, os.path.basename(path)) symlink(path, symlink_target) path = symlink_target print(path)
def main(): parser = OptionParser() parser.add_option( "--verify", action="store_true", dest="verify", default=False, help="return the sdk argument and warn if it doesn't exist") parser.add_option("--sdk_path", action="store", type="string", dest="sdk_path", default="", help="user-specified SDK path; bypasses verification") parser.add_option( "--print_sdk_path", action="store_true", dest="print_sdk_path", default=False, help="Additionaly print the path the SDK (appears first).") parser.add_option( "--symlink", action="store", type="string", dest="symlink", default="", help="Whether to create a symlink in the buildroot to the SDK.") (options, args) = parser.parse_args() min_sdk_version = args[0] job = subprocess.Popen(['xcode-select', '-print-path'], universal_newlines=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) out, err = job.communicate() if job.returncode != 0: sys.stderr.writelines([out, err]) raise Exception(( 'Error %d running xcode-select, you might have to run ' '|sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer| ' 'if you are using Xcode 4.') % job.returncode) sdk_command = ['xcodebuild', '-showsdks', '-json'] sdk_json_output = subprocess.check_output(sdk_command) sdk_json = json.loads(sdk_json_output) best_sdk = None sdk_output = None for properties in list(sdk_json): # Filter out macOS DriverKit, watchOS, AppleTV, and other SDKs. if properties.get( 'platform') != 'macosx' or 'driver' in properties.get( 'canonicalName'): continue sdk_version = properties['sdkVersion'] parsed_version = parse_version(sdk_version) if (parsed_version >= parse_version(min_sdk_version) and (not best_sdk or parsed_version < parse_version(best_sdk))): best_sdk = sdk_version sdk_output = properties['sdkPath'] if not best_sdk: print(sdk_json_output) raise Exception('No %s+ SDK found' % min_sdk_version) if options.verify and best_sdk != min_sdk_version and not options.sdk_path: print(sdk_json_output) sys.stderr.writelines([ '', ' vvvvvvv', '', 'This build requires the %s SDK, but it was not found on your system.' \ % min_sdk_version, 'Either install it, or explicitly set mac_sdk in your gn args.', '', ' ^^^^^^^', '']) return min_sdk_version if options.symlink or options.print_sdk_path: if options.symlink: symlink_target = os.path.join(options.symlink, 'SDKs', os.path.basename(sdk_output)) symlink(sdk_output, symlink_target) sdk_output = symlink_target if options.print_sdk_path: print(sdk_output) return best_sdk
def main(): parser = OptionParser() parser.add_option("--verify", action="store_true", dest="verify", default=False, help="return the sdk argument and warn if it doesn't exist") parser.add_option("--sdk_path", action="store", type="string", dest="sdk_path", default="", help="user-specified SDK path; bypasses verification") parser.add_option("--print_sdk_path", action="store_true", dest="print_sdk_path", default=False, help="Additionaly print the path the SDK (appears first).") parser.add_option("--symlink", action="store", type="string", dest="symlink", default="", help="Whether to create a symlink in the buildroot to the SDK.") (options, args) = parser.parse_args() min_sdk_version = args[0] job = subprocess.Popen(['xcode-select', '-print-path'], universal_newlines=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) out, err = job.communicate() if job.returncode != 0: sys.stderr.writelines([out, err]) raise Exception(('Error %d running xcode-select, you might have to run ' '|sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer| ' 'if you are using Xcode 4.') % job.returncode) # The Developer folder moved in Xcode 4.3. xcode43_sdk_path = os.path.join( out.rstrip(), 'Platforms/MacOSX.platform/Developer/SDKs') if os.path.isdir(xcode43_sdk_path): sdk_dir = xcode43_sdk_path else: sdk_dir = os.path.join(out.rstrip(), 'SDKs') sdks = [re.findall('^MacOSX(1[0-2]\.\d+)\.sdk$', s) for s in os.listdir(sdk_dir)] sdks = [s[0] for s in sdks if s] # [['10.5'], ['10.6']] => ['10.5', '10.6'] sdks = [s for s in sdks # ['10.5', '10.6'] => ['10.6'] if parse_version(s) >= parse_version(min_sdk_version)] if not sdks: raise Exception('No %s+ SDK found' % min_sdk_version) best_sdk = sorted(sdks, key=parse_version)[0] if options.verify and best_sdk != min_sdk_version and not options.sdk_path: sys.stderr.writelines([ '', ' vvvvvvv', '', 'This build requires the %s SDK, but it was not found on your system.' \ % min_sdk_version, 'Either install it, or explicitly set mac_sdk in your gn args.', '', ' ^^^^^^^', '']) return min_sdk_version if options.symlink or options.print_sdk_path: sdk_output = subprocess.check_output(['xcodebuild', '-version', '-sdk', 'macosx' + best_sdk, 'Path']).decode('utf-8').strip() if options.symlink: symlink_target = os.path.join(options.symlink, 'SDKs', os.path.basename(sdk_output)) symlink(sdk_output, symlink_target) sdk_output = symlink_target if options.print_sdk_path: print(sdk_output) return best_sdk