Calvin Rose
Calvin Rose
@ryandesign Let me know if the latest master compiles on your system - when it comes to porting to older systems, there could be other issues as well.
The issue here seems to be with the os_shell function, and the fact that is implemented to run on a another thread, and then schedule the original fiber when it...
Hard to tell from just the valgrind output, but I think the invalid read is from calling `strlen` on a symbol created by `(gensym)`. Most function internal to Janet don't...
@czkz Check now for examples 1 and 3. Example 2 I think should still have some strange behavior, but that is because the construction is strange. I have not yet...
I'm pretty sure jart was one of the people who first got janet to run with cosmopolitan - helps that Janet has a sort of generic "Posix" target built in,...
I got it working locally - however I needed to turn off IPV6 code and make some Makefile modifications to allow bypassing the shared library step. There also seem to...
I pushed a build changes yesterday, but I wouldn't consider this fixed until CI has a cosmopolitan build in it
Thanks for the interest here. Janet has a sort of builtin natural target for PGO in the bootstrapping process, which is just executing src/boot/boot.janet. For interpreters I imagine that anything...
So the `ev/thread` function, which is what does all of the heavy lifting of setting up a new thread, takes some flags to determine what state to copy from the...
For completeness, as a work around I should mention that `ev/thread` can take a fiber argument as well as a function argument - while this doesn't help if you are...