We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e18a02 commit 1177f60Copy full SHA for 1177f60
src/c2pa/lib.py
@@ -62,6 +62,9 @@ def get_platform_identifier(cpu_arch: Optional[CPUArchitecture] = None) -> str:
62
elif system == "windows":
63
return "x86_64-pc-windows-msvc"
64
elif system == "linux":
65
+ print("## System is Linux, arch is: ", _get_architecture()())
66
+ if _get_architecture() in ['arm64', 'aarch64']:
67
+ return "aarch64-unknown-linux-gnu"
68
return "x86_64-unknown-linux-gnu"
69
else:
70
raise ValueError(f"Unsupported operating system: {system}")
0 commit comments