From be7b9dec521f36909643c7084c16c284968a7db3 Mon Sep 17 00:00:00 2001 From: kcbanner Date: Tue, 23 Jun 2026 22:04:11 -0400 Subject: [PATCH] tests: enable selfhosted x86_64 c-abi targets --- test/tests.zig | 58 +++++++++++++++++++++++++------------------------- 1 file changed, 29 insertions(+), 29 deletions(-) diff --git a/test/tests.zig b/test/tests.zig index 75810c0e17042634e335a1712c46338636987501..6166444b9b33bdcafc034cfb26bc55aa9c48a916 100644 --- a/test/tests.zig +++ b/test/tests.zig @@ -2021,35 +2021,35 @@ const c_abi_targets = blk: { }, }, - //.{ - // .target = .{ - // .cpu_arch = .x86_64, - // .os_tag = .windows, - // .abi = .gnu, - // }, - // .use_llvm = false, - // .c_defines = &.{"ZIG_BACKEND_STAGE2_X86_64"}, - //}, - //.{ - // .target = .{ - // .cpu_arch = .x86_64, - // .cpu_model = .{ .explicit = &std.Target.x86.cpu.x86_64_v2 }, - // .os_tag = .windows, - // .abi = .gnu, - // }, - // .use_llvm = false, - // .c_defines = &.{"ZIG_BACKEND_STAGE2_X86_64"}, - //}, - //.{ - // .target = .{ - // .cpu_arch = .x86_64, - // .cpu_model = .{ .explicit = &std.Target.x86.cpu.x86_64_v3 }, - // .os_tag = .windows, - // .abi = .gnu, - // }, - // .use_llvm = false, - // .c_defines = &.{"ZIG_BACKEND_STAGE2_X86_64"}, - //}, + .{ + .target = .{ + .cpu_arch = .x86_64, + .os_tag = .windows, + .abi = .gnu, + }, + .use_llvm = false, + .c_defines = &.{"ZIG_BACKEND_STAGE2_X86_64"}, + }, + .{ + .target = .{ + .cpu_arch = .x86_64, + .cpu_model = .{ .explicit = &std.Target.x86.cpu.x86_64_v2 }, + .os_tag = .windows, + .abi = .gnu, + }, + .use_llvm = false, + .c_defines = &.{"ZIG_BACKEND_STAGE2_X86_64"}, + }, + .{ + .target = .{ + .cpu_arch = .x86_64, + .cpu_model = .{ .explicit = &std.Target.x86.cpu.x86_64_v3 }, + .os_tag = .windows, + .abi = .gnu, + }, + .use_llvm = false, + .c_defines = &.{"ZIG_BACKEND_STAGE2_X86_64"}, + }, .{ .target = .{ .cpu_arch = .x86_64, -- 2.54.0