summaryrefslogtreecommitdiff
path: root/build.zig
diff options
context:
space:
mode:
Diffstat (limited to 'build.zig')
-rw-r--r--build.zig3
1 files changed, 3 insertions, 0 deletions
diff --git a/build.zig b/build.zig
index 0eccf2a..9d8c383 100644
--- a/build.zig
+++ b/build.zig
@@ -10,6 +10,9 @@ pub fn build(b: *std.Build) void {
}),
});
+ // Habilita libc para usar environ
+ exe.linkLibC();
+
// This declares intent for the executable to be installed into the
// standard location when the user invokes the "install" step (the default
// step when running `zig build`).