diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2020-03-04 00:07:15 -0500 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2020-03-04 00:07:15 -0500 |
| commit | b21d44f26a9f2ee9b4d4248692aa5cc5fc78ade3 (patch) | |
| tree | e418e4725eb974be946dc28797feda4ef9fbf5c1 /tools | |
| parent | 74fef9db6e520cdcdd8b6e0a32c94c73460ef0d0 (diff) | |
| download | zig-b21d44f26a9f2ee9b4d4248692aa5cc5fc78ade3.tar.gz zig-b21d44f26a9f2ee9b4d4248692aa5cc5fc78ade3.zip | |
update glibc abilists for 2.31
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/update_glibc.zig | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/update_glibc.zig b/tools/update_glibc.zig index 2f036fd17b..84522aabe4 100644 --- a/tools/update_glibc.zig +++ b/tools/update_glibc.zig @@ -172,6 +172,10 @@ pub fn main() !void { (std.mem.eql(u8, lib_name, "m") and abi_list.targets[0].arch == .powerpc))) { break :blk try fs.path.join(allocator, &[_][]const u8{ prefix, abi_list.path, "nofpu", basename }); + } else if (abi_list.targets[0].arch == .arm) { + break :blk try fs.path.join(allocator, &[_][]const u8{ prefix, abi_list.path, "le", basename }); + } else if (abi_list.targets[0].arch == .armeb) { + break :blk try fs.path.join(allocator, &[_][]const u8{ prefix, abi_list.path, "be", basename }); } break :blk try fs.path.join(allocator, &[_][]const u8{ prefix, abi_list.path, basename }); }; |
