| ... | @@ -9,6 +9,7 @@ pub fn build(b: *std.Build) void { | ... | @@ -9,6 +9,7 @@ pub fn build(b: *std.Build) void { |
| 9 | const optimize: std.builtin.OptimizeMode = .Debug; | 9 | const optimize: std.builtin.OptimizeMode = .Debug; |
| 10 | const target = b.graph.host; | 10 | const target = b.graph.host; |
| 11 | | 11 | |
| | 12 | if (target.result.os.tag == .netbsd) return; // https://codeberg.org/ziglang/zig/issues/30841 |
| 12 | if (target.result.os.tag == .openbsd) return; // realpath not supported | 13 | if (target.result.os.tag == .openbsd) return; // realpath not supported |
| 13 | | 14 | |
| 14 | const main = b.addExecutable(.{ | 15 | const main = b.addExecutable(.{ |