diff --git a/emsdk.py b/emsdk.py index 93463c4fc4..11fdc3cfd0 100644 --- a/emsdk.py +++ b/emsdk.py @@ -116,6 +116,9 @@ def errlog(msg): ARCH = 'x86' elif machine.startswith('aarch64') or machine.lower().startswith('arm64'): ARCH = 'aarch64' + if MACOS: + # arm64 macOS runs x86_64 binaries and we don't have build bots yet for native + ARCH = 'x86_64' elif platform.machine().startswith('arm'): ARCH = 'arm' else: