fix telemetry, link libc and libcpp

This commit is contained in:
Karl Seguin
2025-08-28 21:44:13 +08:00
parent 1443f38e5f
commit 23d6362058
2 changed files with 26 additions and 26 deletions

View File

@@ -53,6 +53,8 @@ pub fn build(b: *Build) !void {
.root_source_file = b.path("src/main.zig"),
.target = target,
.optimize = optimize,
.link_libc = true,
.link_libcpp = true,
});
try addDependencies(b, lightpanda_module, opts);