I am trying to add to something to my build.zig so that i can compile with the "-luv" option.
I think I thought the good function, but for some reason there is a type mismatch and I can wrap my head around:
exe.setExecCmd(.{"luv"});
error: type '[]const ?[]const u8' does not support array initialization syntax exe.setExecCmd(.{"luv"});
I also get this note:
note: inferred array length is specified with an underscore: '[_]?[]const u8'
I feel like the note isnt really related to my error or am I wrong ?