about summary refs log tree commit diff
path: root/build.zig
diff options
context:
space:
mode:
Diffstat (limited to 'build.zig')
-rw-r--r--build.zig3
1 files changed, 2 insertions, 1 deletions
diff --git a/build.zig b/build.zig
index 45fafa1..49df9a8 100644
--- a/build.zig
+++ b/build.zig
@@ -26,7 +26,8 @@ pub fn build(b: *std.Build) !void {
         .optimize = optimize,
     });
 
-    exe_mod.linkSystemLibrary("llvm", .{});
+    exe_mod.linkSystemLibrary("LLVM-18", .{});
+    exe_mod.link_libc = true;
 
     // This creates another `std.Build.Step.Compile`, but this one builds an executable
     // rather than a static library.