11cb0ef41Sopenharmony_cifrom __future__ import print_function 21cb0ef41Sopenharmony_cifrom utils import GuessArchitecture 31cb0ef41Sopenharmony_ciarch = GuessArchitecture() 41cb0ef41Sopenharmony_ci 51cb0ef41Sopenharmony_ci# assume 64 bit unless set specifically 61cb0ef41Sopenharmony_ciprint(GuessArchitecture() \ 71cb0ef41Sopenharmony_ci .replace('ia32', 'x64') \ 81cb0ef41Sopenharmony_ci .replace('ppc', 'ppc64') \ 91cb0ef41Sopenharmony_ci .replace('arm', 'arm64') \ 101cb0ef41Sopenharmony_ci .replace('s390', 's390x')) 11