Fixes for linux arm64 support

This commit is contained in:
Eric Froemling 2021-01-18 23:09:26 -08:00
parent e038bf4de9
commit 7bec7dcbe1

View File

@ -485,9 +485,10 @@ def get_current_prefab_platform(wsl_gives_windows: bool = True) -> str:
f'make_prefab: unsupported win machine type:'
f' {machine}.')
# TODO: add support for arm linux.
if machine == 'x86_64':
return 'linux_x86_64'
if machine == 'arm64':
return 'linux_arm64'
raise RuntimeError(f'make_prefab: unsupported linux machine type:'
f' {machine}.')
raise RuntimeError(f'make_prefab: unrecognized platform:'