find_sdk.py |
Prints the lowest locally available SDK version greater than or equal to a
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.
Usage:
python find_sdk.py \
[--print_sdk_path] \
[--print_bin_path] \
10.6 # Ignores SDKs < 10.6
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
|
3274 |
OWNERS |
|
26 |
should_use_hermetic_xcode.py |
Prints "1" if Chrome targets should be built with hermetic Xcode.
Prints "2" if Chrome targets should be built with hermetic Xcode, but the OS
version does not meet the minimum requirements of the hermetic version of Xcode.
Prints "3" if FORCE_MAC_TOOLCHAIN is set for an iOS target_os
Otherwise prints "0".
Usage:
python should_use_hermetic_xcode.py <target_os>
|
1724 |