(arch: str)
| 51 | |
| 52 | |
| 53 | def arch_convert(arch: str) -> Optional[QL_ARCH]: |
| 54 | alias_map = { |
| 55 | 'amd64': 'x8664', |
| 56 | 'x86_64': 'x8664', |
| 57 | 'riscv32': 'riscv' |
| 58 | } |
| 59 | |
| 60 | return __name_to_enum(arch, arch_map, alias_map) |
| 61 | |
| 62 | |
| 63 | def debugger_convert(debugger: str) -> Optional[QL_DEBUGGER]: |
nothing calls this directly
no test coverage detected