Skip to content

Commit

Permalink
Merge pull request #20949 from ziglang/update-glibc-abilists
Browse files Browse the repository at this point in the history
glibc: update abilists file
  • Loading branch information
andrewrk authored Aug 5, 2024
2 parents 724804a + d6945ee commit ddcb7b1
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 11 deletions.
Binary file modified lib/libc/glibc/abilists
Binary file not shown.
11 changes: 0 additions & 11 deletions src/glibc.zig
Original file line number Diff line number Diff line change
Expand Up @@ -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;
};
Expand Down

0 comments on commit ddcb7b1

Please sign in to comment.