mirror of
https://github.com/ziglang/zig.git
synced 2026-01-13 19:05:12 +00:00
This new error mirrors the error returned from the Elf struct (error.UnsupportedElfArchitecture):
0adcfd60f4/src/link/Lld.zig (L112)
Before:
```
$ zig build-exe -target riscv64-windows-gnu main.zig
thread 543087 panic: reached unreachable code
```
After:
```
$ zig build-exe -target riscv64-windows-gnu main.zig
error: unable to create compilation: UnsupportedCoffArchitecture
```
Closes #24287