diff options
| author | Alex Rønne Petersen <alex@alexrp.com> | 2024-07-21 14:13:37 +0200 |
|---|---|---|
| committer | Alex Rønne Petersen <alex@alexrp.com> | 2024-07-21 22:38:30 +0200 |
| commit | 21cc5a20440e41a0f8b53b5eeac4ba5da55b64bf (patch) | |
| tree | 15b67e5278531300dfda8f2814e405dc8dc59549 /src/target.zig | |
| parent | f1e0c35db4167b8cc5a70d2270028287e737fff4 (diff) | |
| download | zig-21cc5a20440e41a0f8b53b5eeac4ba5da55b64bf.tar.gz zig-21cc5a20440e41a0f8b53b5eeac4ba5da55b64bf.zip | |
std.Target: Remove the `shave` arch tag.
This was added as an architecture to LLVM's target triple parser and the Clang
driver in 2015. No backend ever materialized as far as I can see (same for GCC).
In 2016, other code referring to it started using "Myriad" instead. Ultimately,
all code related to it that isn't in the target triple parser was removed. It
seems to be a real product, just... literally no one seems to know anything
about the ISA. I figure after almost a decade with no public ISA documentation
to speak of, and no LLVM backend to reference, it's probably safe to assume that
we're not going to learn much about this ISA, making it useless for Zig.
See: https://github.com/llvm/llvm-project/commit/1b5767f72b5a037ca8f1802d737de97f8d92263d
See: https://github.com/llvm/llvm-project/commit/84a7564b28360843ee9afec5d3823c89623eb6a5
See: https://github.com/llvm/llvm-project/commit/8cfe9d8f2ad3a52ba7fd5841d3939aa810536e16
Diffstat (limited to 'src/target.zig')
| -rw-r--r-- | src/target.zig | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/target.zig b/src/target.zig index dce8cab7b4..89e6069e21 100644 --- a/src/target.zig +++ b/src/target.zig @@ -158,7 +158,6 @@ pub fn hasLlvmSupport(target: std.Target, ofmt: std.Target.ObjectFormat) bool { .spirv32, .spirv64, .kalimba, - .shave, .lanai, .wasm32, .wasm64, |
