aboutsummaryrefslogtreecommitdiff
path: root/src/Compilation.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/Compilation.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/Compilation.zig')
-rw-r--r--src/Compilation.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Compilation.zig b/src/Compilation.zig
index 9f0ab662a4..c6734aa3e7 100644
--- a/src/Compilation.zig
+++ b/src/Compilation.zig
@@ -1766,7 +1766,7 @@ pub const CreateOptions = struct {
reference_trace: ?u32 = null,
test_filters: []const []const u8 = &.{},
test_runner_path: ?[]const u8 = null,
- subsystem: ?std.Target.SubSystem = null,
+ subsystem: ?std.zig.Subsystem = null,
mingw_unicode_entry_point: bool = false,
/// (Zig compiler development) Enable dumping linker's state as JSON.
enable_link_snapshots: bool = false,