Windows: Disable the ARM64 config by default

Set the CEF_ENABLE_ARM64=1 environment variable to enable the ARM64 build if
you have installed the Visual Studio compiler toolchain for ARM64.
This commit is contained in:
Marshall Greenblatt 2019-10-02 14:54:01 +03:00
parent a8283d1cc3
commit c0af145165

View File

@ -522,7 +522,9 @@ def GetAllPlatformConfigs(build_args):
else:
supported_cpus = ['x64']
elif platform == 'windows':
supported_cpus = ['x86', 'x64', 'arm64']
supported_cpus = ['x86', 'x64']
if os.environ.get('CEF_ENABLE_ARM64', '') == '1':
supported_cpus.append('arm64')
elif platform == 'macosx':
supported_cpus = ['x64']
else: