mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-01-01 04:18:46 +01:00
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:
parent
a8283d1cc3
commit
c0af145165
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user