aboutsummaryrefslogtreecommitdiff
path: root/src/link.zig
diff options
context:
space:
mode:
authorCarl Åstholm <carl@astholm.se>2025-09-05 17:50:46 +0200
committerCarl Åstholm <carl@astholm.se>2025-11-05 01:31:26 +0100
commit54f2a7c833bf2ca0b370ebe2470bb0dd71206cba (patch)
treebad5322f30fbc01a0b842d8128659d43d947f82e /src/link.zig
parent075d300342afa72f5328c0ee4232151dd0968264 (diff)
downloadzig-54f2a7c833bf2ca0b370ebe2470bb0dd71206cba.tar.gz
zig-54f2a7c833bf2ca0b370ebe2470bb0dd71206cba.zip
Move `std.Target.SubSystem` to `std.zig.Subsystem`
Also updates the field names to conform with the rest of std.
Diffstat (limited to 'src/link.zig')
-rw-r--r--src/link.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/link.zig b/src/link.zig
index f324f23897..ce1d2a68f6 100644
--- a/src/link.zig
+++ b/src/link.zig
@@ -448,7 +448,7 @@ pub const File = struct {
allow_shlib_undefined: ?bool,
allow_undefined_version: bool,
enable_new_dtags: ?bool,
- subsystem: ?std.Target.SubSystem,
+ subsystem: ?std.zig.Subsystem,
linker_script: ?[]const u8,
version_script: ?[]const u8,
soname: ?[]const u8,