#how do i use the new x86 backend instead of llvm?

1 messages · Page 1 of 1 (latest)

old quiver
#

i tried zig build run -fno-llvm, but it didn't work. i'm using zig 0.14.0

plucky blade
#

it works best on x86_64-linux. edit your build.zig:

b.addExecutable(.{
    ...
    .use_llvm = false,
    .use_lld = false,
});
old quiver
#

that worked, thanks.
i got a "zig compiler bug", but at least now i know!

rough oxide
plucky blade