Andy Keep

Results 67 comments of Andy Keep

@metab0t No, the symlinks are only needed for the build process. Once things are complete you can copy the contents of the bin and boot directories (which are now the...

This isn't actually an issue with the expander being slow, in fact the optimize can fold it almost instantaneously, as we can see from using `time`: ``` > (time (expand/optimize...

Ah, okay, I'll have to give this another look. Thanks for the quick response on this!

What does your C compiler report as it's target now that CFLAGS is set to target a 32-bit machine? (In your original email you indicated it was targeting aarch64--linux-android, which...

I don't know that we have any particular plans to work on this right now, but we would certainly welcome the effort if someone wanted to take the lead on...

It is very difficult to tell what is going on, except to say that the compiler is likely generating some bad code or the garbage collector is getting some corrupted...

Thanks for the pull request, this looks like a really good start at a port to Dragonfly BSD. I do have a couple of requests. 1. Please add an Mf-a6df...

Actually, Chez Scheme already supports this via `process` or `open-process-ports`. Internally this uses `fork` on unix-like operating system and `CreateProcessW` on windows (see the code for `s_process` in the `c`...

Ugh. You are correct, my apologies, I missed the `/bin/sh` in the `execl` call. The quoting was initially accidental, but I realized I had done that, and it actually allows...

Thanks for sharing the zip @swatson555, there are actually a few issues you're running into here. 1. `compile-whole-program` does not preserve the library entry points like `(n)` unless you specify...