Vesim
Vesim
Better solution for #459
### Zig Version 0.10.0-dev.495+254b8c8d1 ### Steps to Reproduce ``` echo 'pub fn main() void {}' > main.zig zig build-exe -target arm-linux-musleabi -mcpu arm926ej_s -lc main.zig ``` ### Expected Behavior `musleabi`...
Feature similar to https://github.com/zigtools/zls/pull/1067 but for `type` arguments. Simple repro: ```zig const Bar = struct { x: usize, fn baz(self: @This()) void { _ = self; } }; fn Foo(comptime...
Right now there is no way to pipe stdin from one process to stdout in another process because `spawnPosix` is always creating(and overwriting .stdin/out/err) pipes when `std*_behavior` is set to...