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 8f0143a commit 72fd965Copy full SHA for 72fd965
src/target/parser.rs
@@ -402,6 +402,21 @@ impl<'a> TargetInfo<'a> {
402
if vendor == "uwp" {
403
abi = "uwp";
404
}
405
+ if ["powerpc64-unknown-linux-gnu", "powerpc64-wrs-vxworks"].contains(&target) {
406
+ abi = "elfv1";
407
+ }
408
+ if [
409
+ "powerpc64-unknown-freebsd",
410
+ "powerpc64-unknown-linux-musl",
411
+ "powerpc64-unknown-openbsd",
412
+ "powerpc64le-unknown-freebsd",
413
+ "powerpc64le-unknown-linux-gnu",
414
+ "powerpc64le-unknown-linux-musl",
415
+ ]
416
+ .contains(&target)
417
+ {
418
+ abi = "elfv2";
419
420
421
Ok(Self {
422
full_arch,
0 commit comments