From 19924280446ca02bb680357ad976857a087e91d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20R=C3=B8nne=20Petersen?= Date: Sun, 6 Oct 2024 10:26:00 +0200 Subject: [PATCH] test: Add some missing x86_64-linux-* triples to llvm_targets. --- test/llvm_targets.zig | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/llvm_targets.zig b/test/llvm_targets.zig index 9a2306b6a0..06aabeaeb8 100644 --- a/test/llvm_targets.zig +++ b/test/llvm_targets.zig @@ -350,6 +350,10 @@ const targets = [_]std.Target.Query{ .{ .cpu_arch = .x86_64, .os_tag = .ios, .abi = .macabi }, .{ .cpu_arch = .x86_64, .os_tag = .ios, .abi = .simulator }, .{ .cpu_arch = .x86_64, .os_tag = .linux, .abi = .android }, + .{ .cpu_arch = .x86_64, .os_tag = .linux, .abi = .gnu }, + .{ .cpu_arch = .x86_64, .os_tag = .linux, .abi = .gnux32 }, + .{ .cpu_arch = .x86_64, .os_tag = .linux, .abi = .musl }, + .{ .cpu_arch = .x86_64, .os_tag = .linux, .abi = .muslx32 }, .{ .cpu_arch = .x86_64, .os_tag = .linux, .abi = .none }, .{ .cpu_arch = .x86_64, .os_tag = .linux, .abi = .ohos }, .{ .cpu_arch = .x86_64, .os_tag = .macos, .abi = .none },