#how do i use the new x86 backend instead of llvm?
1 messages · Page 1 of 1 (latest)
it works best on x86_64-linux. edit your build.zig:
b.addExecutable(.{
...
.use_llvm = false,
.use_lld = false,
});
that worked, thanks.
i got a "zig compiler bug", but at least now i know!
Hi, I'm doing the same you suggest here but I still see this message while compiling, is this normal? I'm also using the x86_64-linux version
that's the build script itself, not your program