Delyan Angelov
Delyan Angelov
You can use the .zip files here: https://github.com/vlang/v/releases , or you can compile V from source yourself. V on its own does not need installation or sudo. It can be...
Thanks for the issue. I think that the compiler should not have allowed `fn (item json2.Any) !string` to be used as an argument of .map(), since a result value has...
On Debian, `addr2line` is part of the `binutils` package. Try searching for it, and install it.
https://github.com/vlang/v/pull/20774 may fix this specific compilation problem. (`addr2line` still has to be installed separately for others).
The windows failures are because I have not yet updated all prebuilt tcc executables on https://github.com/vlang/tccbin/ . Only these branches are updated for now: [thirdparty-linux-amd64](https://github.com/vlang/tccbin/tree/thirdparty-linux-amd64) [thirdparty-freebsd-amd64](https://github.com/vlang/tccbin/tree/thirdparty-freebsd-amd64)
Wow, that will be very nice indeed! Thank you for investigating 🙇🏻♂️ .
I've rebuilt thirdparty/tcc's thirdparty-linux-amd64 branch, so that it has `tcc version 0.9.28rc 2024-02-05 HEAD@105d70f7 (x86_64 Linux)` (your latest commit in tcc's mob branch). I'm still testing it, but so far,...
``` > OK: STBI load does not leak with GC on, when loading images multiple times (use < 10MB) > OK: V can crun a script, that lacks a .vsh...
As a bonus, with the new tcc build, the executable sizes are now significantly smaller 🥳, while the compile speed is ~ the same, or even slightly better: Before: ```...
The fix in #20706 is only partial, it revealed a deeper problem with our automatic str method generation, for types that are aliases of C ones.