aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAlex Rønne Petersen <alex@alexrp.com>2024-10-16 06:30:16 +0200
committerAlex Rønne Petersen <alex@alexrp.com>2024-11-02 10:42:53 +0100
commit11915ae48e44cfd9d4e5c5823919fb24951e68f9 (patch)
tree8032757cbc2c166afdcea1fd072f492e655af81d /test
parent8baf887f4edc07aea8aa028cb1d866a5a5206508 (diff)
downloadzig-11915ae48e44cfd9d4e5c5823919fb24951e68f9.tar.gz
zig-11915ae48e44cfd9d4e5c5823919fb24951e68f9.zip
std.zig.target: Change mips64(el)-linux-musl triples to -muslabi64.
With this, MIPS triples for musl are in line with glibc triples.
Diffstat (limited to 'test')
-rw-r--r--test/llvm_targets.zig2
-rw-r--r--test/tests.zig4
2 files changed, 2 insertions, 4 deletions
diff --git a/test/llvm_targets.zig b/test/llvm_targets.zig
index 7cf7d3e8d9..f3de404337 100644
--- a/test/llvm_targets.zig
+++ b/test/llvm_targets.zig
@@ -160,7 +160,6 @@ const targets = [_]std.Target.Query{
.{ .cpu_arch = .mips64, .os_tag = .freestanding, .abi = .none },
.{ .cpu_arch = .mips64, .os_tag = .linux, .abi = .gnuabi64 },
.{ .cpu_arch = .mips64, .os_tag = .linux, .abi = .gnuabin32 },
- .{ .cpu_arch = .mips64, .os_tag = .linux, .abi = .musl },
.{ .cpu_arch = .mips64, .os_tag = .linux, .abi = .muslabi64 },
.{ .cpu_arch = .mips64, .os_tag = .linux, .abi = .muslabin32 },
.{ .cpu_arch = .mips64, .os_tag = .linux, .abi = .none },
@@ -171,7 +170,6 @@ const targets = [_]std.Target.Query{
.{ .cpu_arch = .mips64el, .os_tag = .freestanding, .abi = .none },
.{ .cpu_arch = .mips64el, .os_tag = .linux, .abi = .gnuabi64 },
.{ .cpu_arch = .mips64el, .os_tag = .linux, .abi = .gnuabin32 },
- .{ .cpu_arch = .mips64el, .os_tag = .linux, .abi = .musl },
.{ .cpu_arch = .mips64el, .os_tag = .linux, .abi = .muslabi64 },
.{ .cpu_arch = .mips64el, .os_tag = .linux, .abi = .muslabin32 },
.{ .cpu_arch = .mips64el, .os_tag = .linux, .abi = .none },
diff --git a/test/tests.zig b/test/tests.zig
index a9035560b3..8bcb31a7c8 100644
--- a/test/tests.zig
+++ b/test/tests.zig
@@ -454,7 +454,7 @@ const test_targets = blk: {
.target = .{
.cpu_arch = .mips64,
.os_tag = .linux,
- .abi = .musl,
+ .abi = .muslabi64,
},
.link_libc = true,
},
@@ -478,7 +478,7 @@ const test_targets = blk: {
.target = .{
.cpu_arch = .mips64el,
.os_tag = .linux,
- .abi = .musl,
+ .abi = .muslabi64,
},
.link_libc = true,
},