Fixes for linux arm64 support (again)

This commit is contained in:
Eric Froemling 2021-01-18 23:15:15 -08:00
parent 7bec7dcbe1
commit 448139734e

View File

@ -487,7 +487,7 @@ def get_current_prefab_platform(wsl_gives_windows: bool = True) -> str:
if machine == 'x86_64':
return 'linux_x86_64'
if machine == 'arm64':
if machine == 'aarch64':
return 'linux_arm64'
raise RuntimeError(f'make_prefab: unsupported linux machine type:'
f' {machine}.')