| ... | @@ -9,6 +9,8 @@ pub fn build(b: *std.Build) void { | ... | @@ -9,6 +9,8 @@ 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 == .openbsd) return; // realpath not supported |
| | 13 | |
| 12 | const main = b.addExecutable(.{ | 14 | const main = b.addExecutable(.{ |
| 13 | .name = "main", | 15 | .name = "main", |
| 14 | .root_module = b.createModule(.{ | 16 | .root_module = b.createModule(.{ |