-
For some time now our WASM build has been broken. Not sure what caused it, but as we've not been developing for web (yet), we've left it untouched. Until now. From the binlog, here's the final message that fails:
When I check the |
Beta Was this translation helpful? Give feedback.
Answered by
trydalch
Dec 21, 2024
Replies: 1 comment 7 replies
-
Here's my binlog. |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I think I've figured it out. I have python installed via pyenv-win, so the python that's in my path is another
.bat
file. This is causing the emsdk setup script to exit prematurely, even though there wasn't an error.I changed the
python --version
line to:CALL python --version
This caused the emsdk setup script to actually run to completion and my wasm build is now fixed.