aboutsummaryrefslogtreecommitdiff
path: root/build.zig
diff options
context:
space:
mode:
authorAnhgelus Morhtuuzh <william@herges.fr>2026-04-29 14:00:00 +0200
committerAnhgelus Morhtuuzh <william@herges.fr>2026-05-02 16:54:24 +0200
commit876ef71d1796fdac7f918762390324b8b7e6ff73 (patch)
tree8e48ada3269e5df16757193aae1f06313cf601d7 /build.zig
parent8b9d03450d95e45057eb510a9760175cfc44dd35 (diff)
build(go): cross compile
This doesn't work, because there is a bug in Zig 0.15 that produces truncated or malformed archives (fixed in Zig 0.16). There also is an error when setting -target for zig cc and zig c++.
Diffstat (limited to 'build.zig')
-rw-r--r--build.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.zig b/build.zig
index a934bbc..5c08440 100644
--- a/build.zig
+++ b/build.zig
@@ -109,7 +109,7 @@ pub fn build(b: *std.Build) void {
const example_run = b.addRunArtifact(example);
examples_step.dependOn(&example_run.step);
- const check = b.step("check", "Check if foo compiles");
+ const check = b.step("check", "Check if it compiles");
check.dependOn(&lib.step);
}