astro/mepo: unbreak build after 91552559ae

src/main.zig:15:13: error: encountered @panic at comptime
            @panic("Must be built against Zig 0.10.0");
            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
referenced by:
    comptime_0: /usr/local/lib/zig/std/start.zig:59:50
    remaining reference traces hidden; use '-freference-trace' to see all reference traces
This commit is contained in:
Jan Beich 2023-01-23 23:21:53 +00:00
parent be5f2b52fb
commit 8996a92bf2
1 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,15 @@
Allow newer often compatible Zig patch-level updates
--- src/main.zig.orig 2022-11-17 16:38:59 UTC
+++ src/main.zig
@@ -11,8 +11,8 @@ pub fn main() !void {
pub fn main() !void {
comptime {
const v = builtin.zig_version;
- if (v.major != 0 or v.minor != 10 or v.patch != 0)
- @panic("Must be built against Zig 0.10.0");
+ if (v.major != 0 or v.minor != 10)
+ @panic("Must be built against Zig 0.10");
}
const allocator = std.heap.c_allocator;