authorgravatar for mail@linusgroh.deLinus Groh <mail@linusgroh.de> 2024-05-29 00:00:57+02:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2024-05-28 20:39:42-04:00
logb5e99b5295e74566689986ed48e30046028948f0
tree4796177a6b7c76e5c34ac318e576ca461fa327c6
parent963ffe9d572e6da4ef22672af9b7c54150f66b27

std.Build.step.Compile: Fix lib{c,cpp} mixup in dependsOnSystemLibrary()


1 files changed, 1 insertions(+), 1 deletions(-)

lib/std/Build/Step/Compile.zig+1-1
......@@ -583,7 +583,7 @@ pub fn dependsOnSystemLibrary(compile: *const Compile, name: []const u8) bool {
583583 else => continue,
584584 }
585585 }
586 is_linking_libc = is_linking_libc or module.link_libcpp == true;
586 is_linking_libc = is_linking_libc or module.link_libc == true;
587587 is_linking_libcpp = is_linking_libcpp or module.link_libcpp == true;
588588 }
589589