shinh / elvm

EsoLangVM Compiler Infrastructure
MIT License
1.13k stars 143 forks source link

Let this project support Windows? #132

Closed none-None1 closed 4 months ago

none-None1 commented 5 months ago

This project only supports Linux, so I have to copy it to a virtual machine to execute it, why not let it support Windows?

GNUfan42 commented 5 months ago

Couldn't it be compiled with MSYS2 or Cygwin?

none-None1 commented 5 months ago

No, some functions like waitpid() in the source code are unsupported in Windows.

GNUfan42 commented 5 months ago

Just tried it, MSYS2 complains about the lack of sys/wait.h, but ELVM compiles and runs in Cygwin64 out-of-the-box. elvm_cygwin64

none-None1 commented 4 months ago

Thanks!