use zig's x86 backend

This commit is contained in:
2026-02-12 00:32:57 +02:00
parent b5880e3ce2
commit b12d338f4f

View File

@@ -159,7 +159,11 @@ fn addTestStep(
test_mod.linkLibrary(lib); test_mod.linkLibrary(lib);
} }
const test_exe = b.addTest(.{ .root_module = test_mod }); const test_exe = b.addTest(.{
.root_module = test_mod,
.use_llvm = false,
.use_lld = false,
});
if (valgrind) { if (valgrind) {
test_exe.setExecCmd(&.{ test_exe.setExecCmd(&.{
"valgrind", "valgrind",