From 1b137d5b666a99c574e297e8355ace5aeafdb092 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matheus=20Catarino=20Fran=C3=A7a?= Date: Sun, 8 Oct 2023 09:30:05 -0300 Subject: [PATCH] fix build_compiler --- build.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.zig b/build.zig index 79e35bead..c86e4c667 100644 --- a/build.zig +++ b/build.zig @@ -46,7 +46,7 @@ const Maker = struct { .{ .BUILD_NUMBER = 0, .BUILD_COMMIT = commit_hash.stdout[0 .. commit_hash.stdout.len - 1], // omit newline - .BUILD_COMPILER = zig_version, + .BUILD_COMPILER = builder.fmt("Zig {s}", .{zig_version}), .BUILD_TARGET = try target.allocDescription(builder.allocator), }, );