authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2024-08-05 13:10:55-07:00
committergravatar for noreply@github.comGitHub <noreply@github.com> 2024-08-05 13:10:55-07:00
logddcb7b1c11f88c4ae150b36807033060a469dcb5
tree2f40f29b15095a1291105684f4d385e5d3a14bb5
parent724804a4e026eea8cd42804b44bb0449d4ab3f3c
parentd6945eeba97fa20256cbff86318950fc376fce91
signaturebadge-check Signed by PGP key B5690EEEBB952194

Merge pull request #20949 from ziglang/update-glibc-abilists

glibc: update abilists file

2 files changed, 0 insertions(+), 11 deletions(-)

lib/libc/glibc/abilists
Binary files a/lib/libc/glibc/abilists and b/lib/libc/glibc/abilists differ
src/glibc.zig-11
...@@ -122,17 +122,6 @@ pub fn loadMetaData(gpa: Allocator, contents: []const u8) LoadMetaDataError!*ABI...@@ -122,17 +122,6 @@ pub fn loadMetaData(gpa: Allocator, contents: []const u8) LoadMetaDataError!*ABI
122 return error.ZigInstallationCorrupt;122 return error.ZigInstallationCorrupt;
123 };123 };
124 const arch_tag = std.meta.stringToEnum(std.Target.Cpu.Arch, arch_name) orelse {124 const arch_tag = std.meta.stringToEnum(std.Target.Cpu.Arch, arch_name) orelse {
125 // TODO: Remove this on the next glibc abilists update.
126 if (mem.eql(u8, arch_name, "sparcel")) {
127 targets[i] = .{
128 .arch = .sparc,
129 .os = .linux,
130 .abi = .gnu,
131 };
132
133 continue;
134 }
135
136 log.err("abilists: unrecognized arch: '{s}'", .{arch_name});125 log.err("abilists: unrecognized arch: '{s}'", .{arch_name});
137 return error.ZigInstallationCorrupt;126 return error.ZigInstallationCorrupt;
138 };127 };