Skip to content

Commit 3535865

Browse files
authored
Use x64 version for Windows on Arm (#1115)
1 parent 3d87d5e commit 3535865

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

emsdk.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,9 @@ def exit_with_error(msg):
142142
ARCH = 'x86'
143143
elif machine.startswith('aarch64') or machine.lower().startswith('arm64'):
144144
ARCH = 'aarch64'
145+
if WINDOWS:
146+
errlog('No support for Windows on Arm, fallback to x64')
147+
ARCH = 'x86_64'
145148
elif machine.startswith('arm'):
146149
ARCH = 'arm'
147150
else:

0 commit comments

Comments
 (0)