-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathzig.patch
More file actions
21 lines (21 loc) · 622 Bytes
/
zig.patch
File metadata and controls
21 lines (21 loc) · 622 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
diff --git a/src/dev.zig b/src/dev.zig
index f4be5a36..ae4e914b 100644
--- a/src/dev.zig
+++ b/src/dev.zig
@@ -150,12 +150,13 @@ pub const Env = enum {
else => Env.sema.supports(feature),
},
.wasm => switch (feature) {
- .stdio_listen,
- .incremental,
.wasm_backend,
.wasm_linker,
+ .build_exe_command,
+ .sema,
+ .ast_gen,
=> true,
- else => Env.sema.supports(feature),
+ else => false,
},
};
}