diff options
| author | Alex Rønne Petersen <alex@alexrp.com> | 2024-10-16 04:41:52 +0200 |
|---|---|---|
| committer | Alex Rønne Petersen <alex@alexrp.com> | 2024-11-02 10:42:53 +0100 |
| commit | 94cf5b26f4fc764ca10bd7611c46156c29d254d7 (patch) | |
| tree | e8929af4095f7faaf85ebcacc5a1be57afa846aa /tools/process_headers.zig | |
| parent | 497b502ce465189a96421be831c0cc0be6e8c2f9 (diff) | |
| download | zig-94cf5b26f4fc764ca10bd7611c46156c29d254d7.tar.gz zig-94cf5b26f4fc764ca10bd7611c46156c29d254d7.zip | |
process_headers: Add muslabin32 and muslx32 support.
Diffstat (limited to 'tools/process_headers.zig')
| -rw-r--r-- | tools/process_headers.zig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/process_headers.zig b/tools/process_headers.zig index 1d38a68644..ccd4e1ae96 100644 --- a/tools/process_headers.zig +++ b/tools/process_headers.zig @@ -65,6 +65,7 @@ const musl_targets = [_]LibCTarget{ .{ .name = "m68k", .arch = .m68k, .abi = .musl }, .{ .name = "mips", .arch = .mips, .abi = .musl }, .{ .name = "mips64", .arch = .mips64, .abi = .musl }, + .{ .name = "mipsn32", .arch = .mips64, .abi = .muslabin32 }, .{ .name = "powerpc", .arch = .powerpc, .abi = .musl }, .{ .name = "powerpc64", .arch = .powerpc64, .abi = .musl }, .{ .name = "riscv32", .arch = .riscv32, .abi = .musl }, @@ -72,6 +73,7 @@ const musl_targets = [_]LibCTarget{ .{ .name = "s390x", .arch = .s390x, .abi = .musl }, .{ .name = "i386", .arch = .x86, .abi = .musl }, .{ .name = "x86_64", .arch = .x86_64, .abi = .musl }, + .{ .name = "x32", .arch = .x86_64, .abi = .muslx32 }, }; const DestTarget = struct { |
