Use an alt script to properly determine the OSX SDK version

This commit is contained in:
Matt A. Tobin 2020-07-31 20:27:48 -04:00 committed by Roy Tam
commit 91d2c4c05a
3 changed files with 48 additions and 1 deletions

View file

@ -1176,7 +1176,7 @@
# Enable Keystone auto-update support.
'mac_keystone%': 1,
}, { # else: branding!="Chrome" or buildtype!="Official"
'mac_sdk%': '<!(<(PYTHON) <(DEPTH)/build/mac/find_sdk.py <(mac_sdk_min))',
'mac_sdk%': '<!(<(PYTHON) <(DEPTH)/build/mac/find_sdk_uxp.py <(mac_sdk_path))',
'mac_breakpad_uploads%': 0,
'mac_breakpad%': 0,
'mac_keystone%': 0,

View file

@ -0,0 +1,35 @@
#!/usr/bin/env python
from __future__ import print_function
import os
import re
import sys
if sys.platform == 'darwin':
if len(sys.argv) <= 1:
print("find_sdk_uxp.py: error: Not enough arguments")
sys.exit(1)
else:
if os.path.isdir(sys.argv[1]):
SDK_PATH = sys.argv[1]
else:
print("find_sdk_uxp.py: error: Specified path does not exist or is not a directory")
sys.exit(1)
KNOWN_SDK_VERSIONS = ["10.7", "10.8", "10.9", "10.10",
"10.11", "10.12", "10.13", "10.14",
"10.15"]
REGEX = "^MacOSX(10\.\d+)\.sdk$"
SDK_VERSION = re.findall(REGEX, os.path.basename(SDK_PATH))
if not SDK_VERSION:
print("find_sdk_uxp.py: error: Could not determin the MacOS X SDK version")
sys.exit(1)
if SDK_VERSION[0] in KNOWN_SDK_VERSIONS:
print(SDK_VERSION[0])
else:
print("find_sdk_uxp.py: error: Unknown MacOS X SDK version")
sys.exit(0)