Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1632,6 +1632,11 @@ impl Build {
));
}
}
// On aix we must also link libc++abi when using libc++
if self.get_target()?.os == "aix" {
self.cargo_output
.print_metadata(&"cargo:rustc-link-lib=c++abi");
}
}

let cudart = match &self.cudart {
Expand Down
Loading