From c8af00c66e8b6f62e4dd6ac4d86a3de03e9ea354 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Wed, 15 Dec 2021 19:25:26 -0700 Subject: glibc: fix inconsistency of powerpc ABI mapping See the commit message of 5b6d26e97bb97d79782f3c77b02a997e361a1497 for an explanation. This is the same thing but for powerpc instead of mips. --- tools/process_headers.zig | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'tools/process_headers.zig') diff --git a/tools/process_headers.zig b/tools/process_headers.zig index 125a2eb111..579667a5a6 100644 --- a/tools/process_headers.zig +++ b/tools/process_headers.zig @@ -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", -- cgit v1.2.3