From 51a328d3570c89492901db49af4edb2a260b3439 Mon Sep 17 00:00:00 2001 From: Halil Durak Date: Sat, 18 Oct 2025 13:20:24 +0300 Subject: [PATCH] don't link libcpp twice This was causing an issue on ld linker but not on MachO. --- build.zig | 1 - 1 file changed, 1 deletion(-) diff --git a/build.zig b/build.zig index 61667069..eaa4de7e 100644 --- a/build.zig +++ b/build.zig @@ -860,7 +860,6 @@ pub fn buildAda(b: *Build, m: *Build.Module) !void { .root_source_file = b.path("vendor/ada/root.zig"), .target = m.resolved_target, .optimize = m.optimize, - .link_libcpp = true, }); // Expose headers; note that "ada.h" is a C++ header so no use here.