diff options
| author | Alex Rønne Petersen <alex@alexrp.com> | 2024-10-07 01:24:00 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-07 01:24:00 +0200 |
| commit | 790fc8cd98020c26b65a4af69e25c4e853d463be (patch) | |
| tree | 61f4183d8f8c2b3886be1178066c38088f6b9530 /tools/process_headers.zig | |
| parent | d5c9d8529534745c9feae6b67cdc01d53f11a0d9 (diff) | |
| parent | 4cc1b060ebd76a9fc5ffda8cc83ad48dc11855d7 (diff) | |
| download | zig-790fc8cd98020c26b65a4af69e25c4e853d463be.tar.gz zig-790fc8cd98020c26b65a4af69e25c4e853d463be.zip | |
Merge pull request #21499 from alexrp/loongarch-gnusf
Add `loongarch64-linux-gnusf` target support
Diffstat (limited to 'tools/process_headers.zig')
| -rw-r--r-- | tools/process_headers.zig | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/process_headers.zig b/tools/process_headers.zig index c83903bc28..970c383886 100644 --- a/tools/process_headers.zig +++ b/tools/process_headers.zig @@ -209,6 +209,11 @@ const glibc_targets = [_]LibCTarget{ .arch = MultiArch{ .specific = .loongarch64 }, .abi = MultiAbi{ .specific = Abi.gnu }, }, + LibCTarget{ + .name = "loongarch64-linux-gnu-lp64s", + .arch = MultiArch{ .specific = .loongarch64 }, + .abi = MultiAbi{ .specific = Abi.gnusf }, + }, }; const musl_targets = [_]LibCTarget{ |
