| author | |
| committer | |
| log | c673458e1d44ba8981103bf336a6b2edd25198ac |
| tree | 01a5390aaa4b2abfb78e98ae1f74820f22ca2069 |
| parent | 83ace4590914fa1d5bd887c2f983434aef46cc79 |
1 files changed, 2 insertions(+), 1 deletions(-)
build.zig+2-1| ... | ... | @@ -2,7 +2,8 @@ const std = @import("std"); |
| 2 | 2 | const deps = @import("./deps.zig"); |
| 3 | 3 | |
| 4 | 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 | 8 | const mode = b.standardReleaseOptions(); |
| 8 | 9 |