Hello,
Andrew Gaylard <[email protected]> writes:
> After some digging, I'm a bit closer. Building from today's git
> shows fewer problems:
You're referring to `master', right?
> grep '^==[0-9]*== [a-zA-Z]' ./hello-world.vg |
> awk '/FILE DESCRIPTORS/ {x=0} x==1 {print} /My PID/ {x=1}' |
> sort | uniq -c
> 25 ==3551== Conditional jump or move depends on uninitialised value(s)
> 15 ==3551== Use of uninitialised value of size 4
> 1 ==3551== Warning: bad signal number 0 in sigaction()
Cool.
> I've seen that a build without optimisation, i.e.:
That is expected: the evaluator and/or bytecode interpreter eat up too
much stack space with `-O0'.
Thanks,
Ludo'.