mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02: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:
@ -522,7 +522,9 @@ def GetAllPlatformConfigs(build_args):
|
|||||||
else:
|
else:
|
||||||
supported_cpus = ['x64']
|
supported_cpus = ['x64']
|
||||||
elif platform == 'windows':
|
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':
|
elif platform == 'macosx':
|
||||||
supported_cpus = ['x64']
|
supported_cpus = ['x64']
|
||||||
else:
|
else:
|
||||||
|
Reference in New Issue
Block a user