| author | |
| committer | |
| log | 951ab1b18bf43cafa8ef0b07892eeaf704551482 |
| tree | fe13a1f9f50a5404eb617e90bb22b6869ad44d64 |
| parent | 519f1eb3613a95343d4401f0b3643636b1ee721e |
1 files changed, 2 insertions(+), 2 deletions(-)
lib/std/Build/Step/Compile.zig+2-2| ... | ... | @@ -637,11 +637,11 @@ pub fn dependsOnSystemLibrary(compile: *Compile, name: []const u8) bool { |
| 637 | 637 | |
| 638 | 638 | const target = compile.rootModuleTarget(); |
| 639 | 639 | |
| 640 | if (std.zig.target.isLibCLibName(target, name)) { | |
| 640 | if (std.zig.target.isLibCLibName(&target, name)) { | |
| 641 | 641 | return is_linking_libc; |
| 642 | 642 | } |
| 643 | 643 | |
| 644 | if (std.zig.target.isLibCxxLibName(target, name)) { | |
| 644 | if (std.zig.target.isLibCxxLibName(&target, name)) { | |
| 645 | 645 | return is_linking_libcpp; |
| 646 | 646 | } |
| 647 | 647 |