We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9da8da0 commit 9e68689Copy full SHA for 9e68689
build.zig
@@ -146,6 +146,7 @@ pub fn build(b: *std.Build) void {
146
.target = target,
147
.optimize = optimize,
148
});
149
+ module_bls.linkLibrary(dep_blst.artifact("blst"));
150
b.modules.put(b.dupe("bls"), module_bls) catch @panic("OOM");
151
152
const module_state_transition = b.createModule(.{
@@ -1198,6 +1199,4 @@ pub fn build(b: *std.Build) void {
1198
1199
module_bls_spec_tests.addImport("hex", module_hex);
1200
module_bls_spec_tests.addImport("yaml", dep_yaml.module("yaml"));
1201
module_bls_spec_tests.addImport("spec_test_options", options_module_spec_test_options);
-
1202
- _ = dep_blst;
1203
}
0 commit comments