diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2025-08-10 23:55:40 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2025-08-11 10:56:20 -0700 |
| commit | 0b3c3c02e30f61da44d6368cb89e1ecb1afb1399 (patch) | |
| tree | e39a2f66c4e293c572446a91dfd8796cff9796a1 /src/codegen.zig | |
| parent | d1917b5c3ac9b79425667dc75768e4f75389f635 (diff) | |
| download | zig-0b3c3c02e30f61da44d6368cb89e1ecb1afb1399.tar.gz zig-0b3c3c02e30f61da44d6368cb89e1ecb1afb1399.zip | |
linker: delete plan9 support
This experimental target was never fully completed. The operating system
is not that interesting or popular anyway, and the maintainer is no
longer around.
Not worth the maintenance burden. This code can be resurrected later if
it is worth it. In such case it will be subject to greater scrutiny.
Diffstat (limited to 'src/codegen.zig')
| -rw-r--r-- | src/codegen.zig | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/codegen.zig b/src/codegen.zig index 2e06bfb676..b4822077d2 100644 --- a/src/codegen.zig +++ b/src/codegen.zig @@ -997,8 +997,6 @@ pub fn genNavRef( }, .link_once => unreachable, } - } else if (lf.cast(.plan9)) |p9| { - return .{ .sym_index = try p9.seeNav(pt, nav_index) }; } else { const msg = try ErrorMsg.create(zcu.gpa, src_loc, "TODO genNavRef for target {}", .{target}); return .{ .fail = msg }; |
