Add "x86_64" and "x86-64" aliases for "x64" (#44)

By a popular request...
This commit is contained in:
Alexei Lozovsky
2021-05-29 22:43:24 +09:00
committed by GitHub
parent 985d494a0f
commit e78ece9a2a
2 changed files with 3 additions and 1 deletions
+2
View File
@@ -90,6 +90,8 @@ function main() {
let arch_aliases = {
"win32": "x86",
"win64": "x64",
"x86_64": "x64",
"x86-64": "x64",
}
// Ignore case when matching as that's what humans expect.
if (arch.toLowerCase() in arch_aliases) {