| D | sdk_info.py | 5 """Collects information about the SDK and return them as JSON file.""" 73 def ExtractSDKInfo(info, sdk): argument 74 """Extract information about the SDK.""" 75 return GetCommandOutput(['xcrun', '--sdk', sdk, '--show-sdk-' + info]).strip() 84 """Returns a dictionary with information about the SDK.""" 102 sdk_info['sdk'] = effective_sdk 132 '-s', '--sdk-version', 133 help='version of the sdk')
|