Use x64 version for Windows on Arm (#1115)
This commit is contained in:
3
emsdk.py
3
emsdk.py
@@ -142,6 +142,9 @@ elif machine.endswith('86'):
|
||||
ARCH = 'x86'
|
||||
elif machine.startswith('aarch64') or machine.lower().startswith('arm64'):
|
||||
ARCH = 'aarch64'
|
||||
if WINDOWS:
|
||||
errlog('No support for Windows on Arm, fallback to x64')
|
||||
ARCH = 'x86_64'
|
||||
elif machine.startswith('arm'):
|
||||
ARCH = 'arm'
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user