Delyan Angelov
Delyan Angelov
> But even so, people who make free software and software are still attacked by evil forces. What's going on? Indeed... What is going on?
A regression test would be also nice.
(rebased over master, to fix an unrelated CI error)
Build your V executable without `-prod`, and with `-g -keepc` instead. Then you will get more useful stack traces.
> If I cannot run self-test can I run doctor? I didn't even know that existed until now. Those are 2 separate commands, implemented in 2 separate programs. Just do...
Why are you setting `VEXE` btw? If it is not set, then V will try to set it itself, by looking at the path of the currently running `v` executable....
I think that you may be better off building everything in the same folder, and then copy only what you need from it. That will eliminate such problems. i.e. try...
tcc should be a recent one (the one most distros provide is `tcc version 0.9.27` which is over 5 years old at this point, since the tcc upstream has not...
`libgc.a` is also distributed with our prebuilt tcc btw, for legacy reasons. You can force V to use the distro's libgc however, by using `-d dynamic_boehm`, i.e. try: `export VFLAGS='-d...
try passing `-ldflags -lm`