arch name fixed

This commit is contained in:
Nicolas 2025-10-04 23:08:25 +02:00
parent aca7e0e253
commit 31791cb6a6
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ def get_var_name(var: Any, scope: dict[str, Any] = globals()) -> list[str]:
def get_local_arch() -> str: def get_local_arch() -> str:
arch_translation_table = {'ARM64': 'x86_64'} arch_translation_table = {'AMD64': 'x86_64'}
return arch_translation_table.get(platform.machine(), platform.machine()) return arch_translation_table.get(platform.machine(), platform.machine())