aboutsummaryrefslogtreecommitdiff
path: root/src/codegen/llvm.zig
diff options
context:
space:
mode:
authorAlex Rønne Petersen <alex@alexrp.com>2024-08-10 17:38:49 +0200
committerAlex Rønne Petersen <alex@alexrp.com>2024-08-12 08:59:49 +0200
commite211dce6fc7fecfea69acf548e751677879088b5 (patch)
tree8aa454517dbf56800d598485b59fdd0f29c6268c /src/codegen/llvm.zig
parent4d4a023042f7a60fe0cac618df1d7e98cbb322a4 (diff)
downloadzig-e211dce6fc7fecfea69acf548e751677879088b5.tar.gz
zig-e211dce6fc7fecfea69acf548e751677879088b5.zip
std.Target: Remove minix OS tag.
It has not seen development in 6 years. RIP. * https://github.com/Stichting-MINIX-Research-Foundation/minix/commits/master * https://groups.google.com/g/minix3/c/nUG1NwxXXkg
Diffstat (limited to 'src/codegen/llvm.zig')
-rw-r--r--src/codegen/llvm.zig2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/codegen/llvm.zig b/src/codegen/llvm.zig
index 959d5fa658..b3f87821fa 100644
--- a/src/codegen/llvm.zig
+++ b/src/codegen/llvm.zig
@@ -142,7 +142,6 @@ pub fn targetTriple(allocator: Allocator, target: std.Target) ![]const u8 {
.opengl,
.plan9,
- .minix,
.contiki,
.other,
=> "unknown",
@@ -212,7 +211,6 @@ pub fn targetOs(os_tag: std.Target.Os.Tag) llvm.OSType {
.opencl,
.opengl,
.plan9,
- .minix,
.contiki,
=> .UnknownOS,