-
-
Notifications
You must be signed in to change notification settings - Fork 21.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Web] Require threads, rtti, allow optimize=speed. #65094
[Web] Require threads, rtti, allow optimize=speed. #65094
Conversation
41aae1e
to
cbd777a
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great to me, just needs a style fix to pass CI.
I'll handle updating the build scripts.
Update export names (web[_dlink]_[release|debug].zip). The Build with dynamic linking is broken due to high number of imports in output wasm (likely emscripten regression issue 15487).
cbd777a
to
f958f00
Compare
Thanks! |
Good work! |
The singleton and class named |
Or just to be |
The |
Follow-up to godotengine/godot#65094. Also reverts LTO change from #62, we found that while it's much slower to link, full LTO still produces smaller binaries and that's quite important for the Web platform.
Follow-up to godotengine/godot#65094. Also reverts LTO change from #62, we found that while it's much slower to link, full LTO still produces smaller binaries and that's quite important for the Web platform.
Update export names (
web[_dlink]_[release|debug].zip
).The Build with dynamic linking is broken due to high number of imports
in output wasm (likely emscripten issue emscripten-core/emscripten#15487).
godotengine/godot-build-scripts#62 will need update.
Closes #65070