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 Jan 7, 2024. It is now read-only.
pacman -S mingw-w64-cross-gcc scons make git
:Issue: godot-cpp/SConstruct fails to recognize MSYS2 environment as a valid platform and raises an error.
In MSYS2-provided python3.9, sys.platform reports
cygwin
which does not fall under any category to set host_platform in godot-cpp/SConstruct.Error:
Workaround: Treat
cygwin
as linux host platform:Replace
if sys.platform.startswith("linux"):
(line 71) in godot-cpp/SConstruct withif sys.platform.startswith("linux") or sys.platform == "cygwin":
With this workaround, gdclip library successfully builds and works perfectly in GDClip demo.
Comments
I am unsure why sys.platform reports "cygwin" when other users report "msys".
The text was updated successfully, but these errors were encountered: