mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
11 lines
293 B
Python
11 lines
293 B
Python
|
from __future__ import print_function
|
||
|
from utils import GuessArchitecture
|
||
|
arch = GuessArchitecture()
|
||
|
|
||
|
# assume 64 bit unless set specifically
|
||
|
print(GuessArchitecture() \
|
||
|
.replace('ia32', 'x64') \
|
||
|
.replace('ppc', 'ppc64') \
|
||
|
.replace('arm', 'arm64') \
|
||
|
.replace('s390', 's390x'))
|