2012-07-28 01:31:03 +04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
|
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
|
|
# found in the LICENSE file.
|
2020-06-24 16:35:49 +03:00
|
|
|
r"""Prints the lowest locally available SDK version greater than or equal to a
|
2019-06-07 19:07:44 +03:00
|
|
|
given minimum sdk version to standard output.
|
|
|
|
|
|
|
|
If --print_sdk_path is passed, then the script will also print the SDK path.
|
|
|
|
If --print_bin_path is passed, then the script will also print the path to the
|
|
|
|
toolchain bin dir.
|
2012-07-28 01:31:03 +04:00
|
|
|
|
|
|
|
Usage:
|
2020-06-24 16:35:49 +03:00
|
|
|
python find_sdk.py \
|
|
|
|
[--print_sdk_path] \
|
|
|
|
[--print_bin_path] \
|
|
|
|
10.6 # Ignores SDKs < 10.6
|
2019-06-07 19:07:44 +03:00
|
|
|
|
|
|
|
Sample Output:
|
|
|
|
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk
|
|
|
|
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/
|
|
|
|
10.14
|
2012-07-28 01:31:03 +04:00
|
|
|
"""
|
|
|
|
|
2019-05-12 09:11:07 +03:00
|
|
|
from __future__ import print_function
|
|
|
|
|
2014-09-04 17:57:07 +04:00
|
|
|
import os
|
|
|
|
import re
|
|
|
|
import subprocess
|
|
|
|
import sys
|
|
|
|
|
2012-08-23 01:45:59 +04:00
|
|
|
from optparse import OptionParser
|
|
|
|
|
|
|
|
|
2017-11-09 22:48:53 +03:00
|
|
|
class SdkError(Exception):
|
|
|
|
def __init__(self, value):
|
|
|
|
self.value = value
|
|
|
|
def __str__(self):
|
|
|
|
return repr(self.value)
|
|
|
|
|
|
|
|
|
2012-07-28 01:31:03 +04:00
|
|
|
def parse_version(version_str):
|
|
|
|
"""'10.6' => [10, 6]"""
|
2020-06-09 12:32:47 +03:00
|
|
|
return [int(s) for s in re.findall(r'(\d+)', version_str)]
|
2012-07-28 01:31:03 +04:00
|
|
|
|
|
|
|
|
2012-08-23 01:45:59 +04:00
|
|
|
def main():
|
|
|
|
parser = OptionParser()
|
2014-01-17 05:05:20 +04:00
|
|
|
parser.add_option("--print_sdk_path",
|
|
|
|
action="store_true", dest="print_sdk_path", default=False,
|
2017-08-01 12:03:13 +03:00
|
|
|
help="Additionally print the path the SDK (appears first).")
|
2019-06-07 19:07:44 +03:00
|
|
|
parser.add_option("--print_bin_path",
|
|
|
|
action="store_true", dest="print_bin_path", default=False,
|
|
|
|
help="Additionally print the path the toolchain bin dir.")
|
2015-08-04 21:51:45 +03:00
|
|
|
options, args = parser.parse_args()
|
|
|
|
if len(args) != 1:
|
|
|
|
parser.error('Please specify a minimum SDK version')
|
2012-08-23 01:45:59 +04:00
|
|
|
min_sdk_version = args[0]
|
|
|
|
|
2019-06-07 00:59:13 +03:00
|
|
|
|
Reland "mac: Reorganize how SDK search paths are set when using hermetic Xcode."
This is a reland of 4f367ede945486857ca0e4978b1e6040895c331f
Depends on https://chromium-review.googlesource.com/c/native_client/src/native_client/+/2176530
Original change's description:
> mac: Reorganize how SDK search paths are set when using hermetic Xcode.
>
> If !use_system_xcode, we use a hermetic Xcode in build/mac_files/
> (if build/mac/should_use_hermetic_xcode.py returns 1, which it
> e.g. does if FORCE_MAC_TOOLCHAIN=1 is set in the environment).
>
> That hermetic Xcode also contains a single, fixed SDK. This is the
> SDK that's also used for official, branded builds.
>
> Previously, for builds using hermetic Xcode, we used the find_sdk.py
> script used in system Xcode builds too, and passed a --verify flag
> to make sure it returns exactly what we expect.
>
> Instead, don't call find_sdk.py at all when using system Xcode.
> This allows removing lots of code, at the cost of duplicating
> two relative paths in mac_sdk.gni and find_sdk.py (...but they're
> already fixed by the hermetic Xcode bundler). This allows
> removing lots of code and one exec_script() invocation.
>
> While here, change mac_sdk_path to be a gn path instead of
> an absolute path, so that sysroot in sysroot.gni is a gn path
> on mac (when using hermetic Xcode) just like it is on linux/android/fuchsia
> builds. When it's passed as -isysroot flag in build/config/mac/BUILD.gn,
> we already call rebase_path on sysroot, so this doesn't have any
> observable behavior change.
>
> While here, remove some old Xcode 7.x era checks and workarounds.
>
> No intended behavor change.
>
> Bug: none
> Change-Id: Ibdc497d3dd6490b88283283db5842a0adb4b844a
> Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2175199
> Reviewed-by: Mark Mentovai <mark@chromium.org>
> Reviewed-by: Elly Fong-Jones <ellyjones@chromium.org>
> Commit-Queue: Nico Weber <thakis@chromium.org>
> Auto-Submit: Nico Weber <thakis@chromium.org>
> Cr-Commit-Position: refs/heads/master@{#764790}
Bug: 1077440
Change-Id: I51b18a16168b63b72fb0274217cbb2b25b87e06f
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2176831
Reviewed-by: Mark Mentovai <mark@chromium.org>
Commit-Queue: Nico Weber <thakis@chromium.org>
Cr-Original-Commit-Position: refs/heads/master@{#764940}
Cr-Mirrored-From: https://chromium.googlesource.com/chromium/src
Cr-Mirrored-Commit: 7514d643e994cfdbb4f13208ab21c2c60094df74
2020-05-02 22:21:41 +03:00
|
|
|
job = subprocess.Popen(['xcode-select', '-print-path'],
|
|
|
|
stdout=subprocess.PIPE,
|
|
|
|
stderr=subprocess.STDOUT)
|
|
|
|
out, err = job.communicate()
|
|
|
|
if job.returncode != 0:
|
|
|
|
print(out, file=sys.stderr)
|
|
|
|
print(err, file=sys.stderr)
|
|
|
|
raise Exception('Error %d running xcode-select' % job.returncode)
|
|
|
|
dev_dir = out.rstrip()
|
2019-06-07 19:07:44 +03:00
|
|
|
sdk_dir = os.path.join(
|
|
|
|
dev_dir, 'Platforms/MacOSX.platform/Developer/SDKs')
|
2019-06-07 00:59:13 +03:00
|
|
|
|
2019-07-18 00:47:00 +03:00
|
|
|
if not os.path.isdir(sdk_dir):
|
2017-11-09 22:48:53 +03:00
|
|
|
raise SdkError('Install Xcode, launch it, accept the license ' +
|
|
|
|
'agreement, and run `sudo xcode-select -s /path/to/Xcode.app` ' +
|
|
|
|
'to continue.')
|
2020-06-24 16:35:49 +03:00
|
|
|
sdks = [re.findall('^MacOSX(\d+\.\d+)\.sdk$', s) for s in os.listdir(sdk_dir)]
|
2012-07-28 01:31:03 +04:00
|
|
|
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)
|
2012-08-23 01:45:59 +04:00
|
|
|
best_sdk = sorted(sdks, key=parse_version)[0]
|
|
|
|
|
2014-01-17 05:05:20 +04:00
|
|
|
if options.print_sdk_path:
|
2019-06-07 00:59:13 +03:00
|
|
|
sdk_name = 'MacOSX' + best_sdk + '.sdk'
|
|
|
|
print(os.path.join(sdk_dir, sdk_name))
|
2014-01-17 05:05:20 +04:00
|
|
|
|
2019-06-07 19:07:44 +03:00
|
|
|
if options.print_bin_path:
|
|
|
|
bin_path = 'Toolchains/XcodeDefault.xctoolchain/usr/bin/'
|
|
|
|
print(os.path.join(dev_dir, bin_path))
|
|
|
|
|
2012-08-23 01:45:59 +04:00
|
|
|
return best_sdk
|
2012-07-28 01:31:03 +04:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
if sys.platform != 'darwin':
|
|
|
|
raise Exception("This script only runs on Mac")
|
2019-05-12 09:11:07 +03:00
|
|
|
print(main())
|
2015-08-04 21:51:45 +03:00
|
|
|
sys.exit(0)
|