| ... | ... | @@ -1253,11 +1253,11 @@ pub const Cpu = struct { |
| 1253 | 1253 | pub fn toCoffMachine(arch: Arch) std.coff.MachineType { |
| 1254 | 1254 | return switch (arch) { |
| 1255 | 1255 | .arm => .ARM, |
| 1256 | | .thumb, .thumbeb => .Thumb, |
| 1257 | | .aarch64, .aarch64_be => .ARM64, |
| 1256 | .thumb => .Thumb, |
| 1257 | .aarch64 => .ARM64, |
| 1258 | 1258 | .loongarch32 => .LOONGARCH32, |
| 1259 | 1259 | .loongarch64 => .LOONGARCH64, |
| 1260 | | .powerpc, .powerpcle => .POWERPC, |
| 1260 | .powerpcle => .POWERPC, |
| 1261 | 1261 | .riscv32 => .RISCV32, |
| 1262 | 1262 | .riscv64 => .RISCV64, |
| 1263 | 1263 | .x86 => .I386, |
| ... | ... | @@ -1266,6 +1266,8 @@ pub const Cpu = struct { |
| 1266 | 1266 | .amdgcn, |
| 1267 | 1267 | .arc, |
| 1268 | 1268 | .armeb, |
| 1269 | .thumbeb, |
| 1270 | .aarch64_be, |
| 1269 | 1271 | .avr, |
| 1270 | 1272 | .bpfel, |
| 1271 | 1273 | .bpfeb, |
| ... | ... | @@ -1282,6 +1284,7 @@ pub const Cpu = struct { |
| 1282 | 1284 | .msp430, |
| 1283 | 1285 | .nvptx, |
| 1284 | 1286 | .nvptx64, |
| 1287 | .powerpc, |
| 1285 | 1288 | .powerpc64, |
| 1286 | 1289 | .powerpc64le, |
| 1287 | 1290 | .s390x, |