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

glibc: update abilists file
This commit is contained in:
Andrew Kelley 2024-08-05 13:10:55 -07:00 committed by GitHub
commit ddcb7b1c11
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 0 additions and 11 deletions

Binary file not shown.

View File

@ -122,17 +122,6 @@ pub fn loadMetaData(gpa: Allocator, contents: []const u8) LoadMetaDataError!*ABI
return error.ZigInstallationCorrupt;
};
const arch_tag = std.meta.stringToEnum(std.Target.Cpu.Arch, arch_name) orelse {
// TODO: Remove this on the next glibc abilists update.
if (mem.eql(u8, arch_name, "sparcel")) {
targets[i] = .{
.arch = .sparc,
.os = .linux,
.abi = .gnu,
};
continue;
}
log.err("abilists: unrecognized arch: '{s}'", .{arch_name});
return error.ZigInstallationCorrupt;
};