authorgravatar for ypsvlq@gmail.comElaine Gibson <ypsvlq@gmail.com> 2025-05-31 03:20:55+01:00
committergravatar for ypsvlq@gmail.comElaine Gibson <ypsvlq@gmail.com> 2025-06-05 13:45:52+01:00
log2e5b3b5c7c7f5e46f1b4481bd81652db869da6d9
treec78201f6efe65eeba9b481f4c95f3b035849dd61
parent2cfa0f567d42a8dace0fb186c710548f18ae0639

build runner: disable fuzz in single-threaded builds


1 files changed, 3 insertions(+), 0 deletions(-)

lib/compiler/build_runner.zig+3
......@@ -435,6 +435,9 @@ pub fn main() !void {
435435 else => return err,
436436 };
437437 if (fuzz) {
438 if (builtin.single_threaded) {
439 fatal("--fuzz not yet implemented for single-threaded builds", .{});
440 }
438441 switch (builtin.os.tag) {
439442 // Current implementation depends on two things that need to be ported to Windows:
440443 // * Memory-mapping to share data between the fuzzer and build runner.