()
| 45 | return _ArchVersion |
| 46 | |
| 47 | def main(): |
| 48 | if (platform.machine() == "aarch64"): |
| 49 | print("ARMv{}".format(GetCPUFeaturesVersion())) |
| 50 | elif (platform.machine() == "x86_64"): |
| 51 | print("x64") |
| 52 | |
| 53 | sys.exit(0) |
| 54 | |
| 55 | if __name__ == "__main__": |
| 56 | sys.exit(main()) |
no test coverage detected