zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit be7b9dec521f36909643c7084c16c284968a7db3 (tree)
parent f5a911290e97435a09d46113551e07ace7367641
Author: kcbanner <kcbanner@gmail.com>
Date:   Tue, 23 Jun 2026 22:04:11 -0400

tests: enable selfhosted x86_64 c-abi targets

Diffstat:
Mtest/tests.zig | 58+++++++++++++++++++++++++++++-----------------------------
1 file changed, 29 insertions(+), 29 deletions(-)

diff --git 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,