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
{{ message }}
This repository has been archived by the owner on Aug 2, 2024. It is now read-only.
Currently there is a few implicit assumption in the code that we're building Linux containers with Modus itself also running on Linux. These includes
path.starts_with("/")
Use of signal handlers
I don't know much about Windows containers - we might not even need to support them if they are quite rare and requires a lot of extra effort, but if we want Modus itself to be runnable on Windows then I will have to address the second point.
The text was updated successfully, but these errors were encountered:
The buildkit_frontend library that we're using is also linux specific. However, this is because it uses an old version of mio.
We could fork and rewrite it with the new version of mio.
Otherwise right now it seems that we can't compile the project on (pure) Windows.
I also noticed earlier that it uses tokio 0.x which can cause problem later if we add other dependencies, so I have been thinking of forking it. Haven't done so yet because it's not a problem for now, but I can do it if necessary
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Currently there is a few implicit assumption in the code that we're building Linux containers with Modus itself also running on Linux. These includes
path.starts_with("/")
I don't know much about Windows containers - we might not even need to support them if they are quite rare and requires a lot of extra effort, but if we want Modus itself to be runnable on Windows then I will have to address the second point.
The text was updated successfully, but these errors were encountered: