glibc: fix inconsistency of powerpc ABI mapping

See the commit message of 5b6d26e97b for
an explanation. This is the same thing but for powerpc instead of mips.
This commit is contained in:
Andrew Kelley
2021-12-15 19:25:26 -07:00
parent 5aeffab693
commit c8af00c66e
84 changed files with 2952 additions and 8 deletions
+6 -1
View File
@@ -152,7 +152,12 @@ const glibc_targets = [_]LibCTarget{
LibCTarget{
.name = "powerpc-linux-gnu",
.arch = MultiArch{ .specific = Arch.powerpc },
.abi = MultiAbi{ .specific = Abi.gnu },
.abi = MultiAbi{ .specific = Abi.gnueabihf },
},
LibCTarget{
.name = "powerpc-linux-gnu-soft",
.arch = MultiArch{ .specific = Arch.powerpc },
.abi = MultiAbi{ .specific = Abi.gnueabi },
},
LibCTarget{
.name = "riscv64-linux-gnu-rv64imac-lp64",