Skip to content

Commit

Permalink
Use x64 version for Windows on Arm (#1115)
Browse files Browse the repository at this point in the history
  • Loading branch information
pbo-linaro authored Oct 9, 2022
1 parent 3d87d5e commit 3535865
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions emsdk.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,9 @@ def exit_with_error(msg):
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:
Expand Down

0 comments on commit 3535865

Please sign in to comment.