| ... | @@ -2,7 +2,8 @@ const std = @import("std"); | ... | @@ -2,7 +2,8 @@ const std = @import("std"); |
| 2 | const deps = @import("./deps.zig"); | 2 | const deps = @import("./deps.zig"); |
| 3 | | 3 | |
| 4 | pub fn build(b: *std.build.Builder) void { | 4 | pub fn build(b: *std.build.Builder) void { |
| 5 | const target = b.standardTargetOptions(.{}); | 5 | var target = b.standardTargetOptions(.{}); |
| | 6 | if (target.isGnuLibC()) target.setGnuLibCVersion(2, 28, 0); |
| 6 | | 7 | |
| 7 | const mode = b.standardReleaseOptions(); | 8 | const mode = b.standardReleaseOptions(); |
| 8 | | 9 | |