mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Windows: Add ARM64 binary distribution support (see issue #2773)
This commit is contained in:
committed by
Marshall Greenblatt
parent
294eb75355
commit
afcee77abe
@ -556,8 +556,12 @@ if options.x64build + options.armbuild + options.arm64build > 1:
|
||||
print_error('Invalid combination of build options.')
|
||||
sys.exit()
|
||||
|
||||
if (options.armbuild or options.arm64build) and platform != 'linux':
|
||||
print_error('--arm-build and --arm64-build are only supported on Linux.')
|
||||
if options.armbuild and platform != 'linux':
|
||||
print_error('--arm-build is only supported on Linux.')
|
||||
sys.exit()
|
||||
|
||||
if options.arm64build and not platform in ('linux', 'windows'):
|
||||
print_error('--arm64-build is only supported on Linux and Windows.')
|
||||
sys.exit()
|
||||
|
||||
if options.sandbox and not platform in ('macosx', 'windows'):
|
||||
|
Reference in New Issue
Block a user