feat: add riscv64 and loong64 to known archs (#62)

This commit is contained in:
Eric Long 2024-11-20 20:57:29 +08:00 committed by GitHub
parent cb9f2d587b
commit 361ac29084
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -135,7 +135,7 @@ function getTargetArchs() {
}
function getKnownArchs() {
return ['x64', 'x86', 'armv7', 'arm64', 'ppc64', 's390x'];
return ['x64', 'x86', 'armv7', 'arm64', 'ppc64', 's390x', 'riscv64', 'loong64'];
}
export const hostAbi = getHostAbi();