File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -12,4 +12,4 @@ and add an equivalent of the following line to your build.zig prior to `b.instal
1212```
1313exe.root_module.addImport("blst", b.dependency("blst", .{}).module("blst"));
1414```
15- You should now be able to ` @import("blst") ` in your application code. The abovementioned fetch command can be used to update the reference.
15+ You should now be able to ` @import("blst") ` in your application code. The abovementioned fetch command can be used to update the git reference.
Original file line number Diff line number Diff line change @@ -37,6 +37,9 @@ pub fn build(b: *std.Build) void {
3737 .flags = cflags
3838 }),
3939 }
40+ if (target .result .os .tag == .windows ) {
41+ lib .linkLibC ();
42+ }
4043
4144 const tests = b .addTest (.{
4245 .root_module = b .createModule (.{
You can’t perform that action at this time.
0 commit comments