McKay Marston
McKay Marston
What I'm seeing is when `gen-static` is called during the 2nd phase of the build, it gets in some kind of allocation loop and eventually runs out of memory. I'm...
I believe this is a problem recognizing `eof-object`: linux: ``` $ chibi-scheme > (define eof-object (read-char (open-input-string ""))) > (eof-object? eof-object) #t > eof-object # > ``` 9front: ``` %...
I think it must be an architecture thing (sizes) because if I change `https://github.com/ashinn/chibi-scheme/blob/master/vm.c#L2206` from ``` if (i == EOF) { ``` to ``` if ((int)i == EOF) { ```...