| author | |
| committer | |
| log | 3e8ac8e23fce5f8468f54209dc9cc97c878edb9e |
| tree | 8756379fc5cbd8a3589138741e8d2244fc5dc29d |
| parent | ecbc701376c944e201ccaa24910ba1dfdcc7a4b0 |
These take 3-4 minutes to run on my machine, i.e. they're not affected by the
LLVM compilation speed bug that affects mips32.1 files changed, 48 insertions(+), 0 deletions(-)
test/tests.zig+48| ... | @@ -365,6 +365,54 @@ const test_targets = blk: { | ... | @@ -365,6 +365,54 @@ const test_targets = blk: { |
| 365 | .slow_backend = true, | 365 | .slow_backend = true, |
| 366 | }, | 366 | }, |
| 367 | 367 | ||
| 368 | .{ | ||
| 369 | .target = .{ | ||
| 370 | .cpu_arch = .mips64, | ||
| 371 | .os_tag = .linux, | ||
| 372 | .abi = .none, | ||
| 373 | }, | ||
| 374 | }, | ||
| 375 | .{ | ||
| 376 | .target = .{ | ||
| 377 | .cpu_arch = .mips64, | ||
| 378 | .os_tag = .linux, | ||
| 379 | .abi = .musl, | ||
| 380 | }, | ||
| 381 | .link_libc = true, | ||
| 382 | }, | ||
| 383 | .{ | ||
| 384 | .target = .{ | ||
| 385 | .cpu_arch = .mips64, | ||
| 386 | .os_tag = .linux, | ||
| 387 | .abi = .gnuabi64, | ||
| 388 | }, | ||
| 389 | .link_libc = true, | ||
| 390 | }, | ||
| 391 | |||
| 392 | .{ | ||
| 393 | .target = .{ | ||
| 394 | .cpu_arch = .mips64el, | ||
| 395 | .os_tag = .linux, | ||
| 396 | .abi = .none, | ||
| 397 | }, | ||
| 398 | }, | ||
| 399 | .{ | ||
| 400 | .target = .{ | ||
| 401 | .cpu_arch = .mips64el, | ||
| 402 | .os_tag = .linux, | ||
| 403 | .abi = .musl, | ||
| 404 | }, | ||
| 405 | .link_libc = true, | ||
| 406 | }, | ||
| 407 | .{ | ||
| 408 | .target = .{ | ||
| 409 | .cpu_arch = .mips64el, | ||
| 410 | .os_tag = .linux, | ||
| 411 | .abi = .gnuabi64, | ||
| 412 | }, | ||
| 413 | .link_libc = true, | ||
| 414 | }, | ||
| 415 | |||
| 368 | .{ | 416 | .{ |
| 369 | .target = .{ | 417 | .target = .{ |
| 370 | .cpu_arch = .powerpc, | 418 | .cpu_arch = .powerpc, |