(target_arch)
| 11 | LIBFFI_VERSION_NUMBER = '30600' |
| 12 | |
| 13 | def normalize_arch(target_arch): |
| 14 | aliases = { |
| 15 | 'x86': 'ia32', |
| 16 | 'x86_64': 'x64', |
| 17 | 'arm64': 'arm64', |
| 18 | 'aarch64': 'arm64', |
| 19 | } |
| 20 | return aliases.get(target_arch, target_arch) |
| 21 | |
| 22 | |
| 23 | def get_target(os_name, target_arch): |
no test coverage detected
searching dependent graphs…