You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We recently added support for building and running Wagi on Windows (#60) -- but because of the platform-dependent Makefile, you cannot make run on Windows.
We should either add a separate target for Windows, or move the logic to create the directories and certificates in a build.rs script.
Note that setting the log environment variables still needs to be in the Makefile, and that is going to have to be platform dependent.
The text was updated successfully, but these errors were encountered:
I am not wading into the waters on Windows and Make. It's nearly impossible to keep a Makefile functional for Windows without making it a nightmare for everyone else.
So a build.rs is fine with me, or we could go back to using Just and Justfiles (which are explicitly tooled for running unixy commands on Windows). In fact, it might be worth trying to run just -f Makefile run to see if it even comes close to working as-is.
We recently added support for building and running Wagi on Windows (#60) -- but because of the platform-dependent Makefile, you cannot
make run
on Windows.We should either add a separate target for Windows, or move the logic to create the directories and certificates in a
build.rs
script.Note that setting the log environment variables still needs to be in the Makefile, and that is going to have to be platform dependent.
The text was updated successfully, but these errors were encountered: