We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2cf2cb commit 1f2d142Copy full SHA for 1f2d142
compiler/rustc_llvm/build.rs
@@ -391,6 +391,11 @@ fn main() {
391
}
392
393
394
+ // libc++abi have to be specified explicitly on AIX.
395
+ if target.contains("aix") {
396
+ println!("cargo:rustc-link-lib=c++abi");
397
+ }
398
+
399
// Libstdc++ depends on pthread which Rust doesn't link on MinGW
400
// since nothing else requires it.
401
if target.ends_with("windows-gnu") {
0 commit comments