diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2023-04-05 22:05:31 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2023-04-05 22:05:31 -0700 |
| commit | f2892775990a5a71147d8b5d3ff272cf56a41a06 (patch) | |
| tree | 28421b175a35bd4cb2a1b34ac85817ddb3fc449e /lib/std/process.zig | |
| parent | 5870ffeb82e93ab2a35f9153668d170eced25cbc (diff) | |
| parent | 348751462632234f2bee10f5faad3711eff89172 (diff) | |
| download | zig-f2892775990a5a71147d8b5d3ff272cf56a41a06.tar.gz zig-f2892775990a5a71147d8b5d3ff272cf56a41a06.zip | |
Merge remote-tracking branch 'origin/master' into llvm16
Diffstat (limited to 'lib/std/process.zig')
| -rw-r--r-- | lib/std/process.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/process.zig b/lib/std/process.zig index d06a012af2..f870b85774 100644 --- a/lib/std/process.zig +++ b/lib/std/process.zig @@ -1093,7 +1093,7 @@ pub const can_execv = switch (builtin.os.tag) { /// Tells whether spawning child processes is supported (e.g. via ChildProcess) pub const can_spawn = switch (builtin.os.tag) { - .wasi => false, + .wasi, .watchos, .tvos => false, else => true, }; |
