We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7453088 commit a7b48fcCopy full SHA for a7b48fc
lib/compiler/build_runner.zig
@@ -435,6 +435,9 @@ pub fn main() !void {
435
else => return err,
436
};
437
if (fuzz) {
438
+ if (builtin.single_threaded) {
439
+ fatal("--fuzz not available in single-threaded builds", .{});
440
+ }
441
switch (builtin.os.tag) {
442
// Current implementation depends on two things that need to be ported to Windows:
443
// * Memory-mapping to share data between the fuzzer and build runner.
0 commit comments