Ubuntu – Zig std.log.info not printing anything with cross-compiled to AARCH64 binary
I have copied a hello world Zig program and it runs fine locally on my Mac: const std = @import("std"); pub fn main() anyerror!void { // Note that info level log messages are by default printed only in Debug //…