Steeve Morin
Steeve Morin
Actually, just saving the remote `.zed/settings.json` fixes it right away without restart
Actually, I implemented what I think is a better idea in place of zig_cc_ rules, a linker attribute that can either be cc or zig, and then the zig_build rule...
Nice! > To get an idea of what changes to look for, how up-to-date is the zml branch of rules_zig on changes that happened upstream? I see that https://github.com/zml/rules_zig/commits/master is...
Gentle ping @withered-magic :)
The following works for us without using `/proc/self/cmdline`. The idea is to leverage ELF's `.init_array` section: ```zig const _fix_argv linksection(".init_array") = &struct{ pub fn call(argc: c_int, argv: [*c][*:0]u8, envp: [*:null]?[*:0]u8)...
Now with macho as well: ```zig const init_array_section = switch (builtin.object_format) { .macho => "__DATA,__init_array", .elf => ".init_array", else => "", }; const fix_argv linksection(init_array_section) = &struct{ pub fn call(argc:...