-
Notifications
You must be signed in to change notification settings - Fork 4
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
Switch wasm tests to -Os
#20
Comments
I'm unsure about this as well. On the one hand, we know of large Wasm applications struggling with module size, and thus
I currently lean towards:
The Emscripten and Binaryen experts, e.g., @kripken, @sbc100, @dschuff, and @tlively might have valuable input here as well. |
I guess a corollary of 3 would be how often we want to update/rebuild things. |
We should investigate if it's worth switching from
-O2
to-Os
. It seems plausible that-O2
makes wire size of a lot of wasm apps significantly larger so they might switch to-Os
or should be encouraged to switch to-Os
so sites load faster. This matters for JS3 since it impacts how much inlining emcc does and therefore how important it is for the wasm runtime to do good inlining.The text was updated successfully, but these errors were encountered: