From bb378943cbbc80dde1d412b28cec42463d1c3a67 Mon Sep 17 00:00:00 2001 From: Luke Boswell Date: Tue, 25 Nov 2025 08:46:23 +1100 Subject: [PATCH] remove noisy warning on windows --- build.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.zig b/build.zig index 720e0af430..9e0d6541eb 100644 --- a/build.zig +++ b/build.zig @@ -823,7 +823,7 @@ pub fn build(b: *std.Build) void { if (!is_native) { std.log.warn("Cross compilation does not support fuzzing (Only building repro executables)", .{}); } else if (is_windows) { - std.log.warn("Windows does not support fuzzing (Only building repro executables)", .{}); + // Windows does not support fuzzing - only build repro executables } else if (use_system_afl) { // If we have system afl, no need for llvm-config. build_afl = true;