Construct a Linux target triple for the specified architecture.
(arch: Arch)
| 50 | |
| 51 | |
| 52 | def target(arch: Arch) -> str: |
| 53 | """Construct a Linux target triple for the specified architecture.""" |
| 54 | return f"{arch}-unknown-linux-gnu" |
| 55 | |
| 56 | |
| 57 | def target_cpu(arch: Arch) -> str: |
no outgoing calls
no test coverage detected