| ... | @@ -6,6 +6,7 @@ pub fn build(b: *std.Build) void { | ... | @@ -6,6 +6,7 @@ pub fn build(b: *std.Build) void { |
| 6 | const optimize = b.standardOptimizeOption(.{}); | 6 | const optimize = b.standardOptimizeOption(.{}); |
| 7 | | 7 | |
| 8 | if (builtin.os.tag == .windows) return; // TODO: libfuzzer support for windows | 8 | if (builtin.os.tag == .windows) return; // TODO: libfuzzer support for windows |
| | 9 | if (builtin.os.tag == .openbsd) return; // https://codeberg.org/ziglang/zig/issues/30728 |
| 9 | | 10 | |
| 10 | const run_step = b.step("run", "Run executables"); | 11 | const run_step = b.step("run", "Run executables"); |
| 11 | const exe = b.addExecutable(.{ | 12 | const exe = b.addExecutable(.{ |