We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In the blog post Making really tiny WebAssembly graphics demos, there's a section:
We can do better, though, by applying wasm-opt: $ wasm-opt -o opt.wasm -Oz target/wasm32-unknown-unknown/release/bare_metal_wasm.wasm $ ls -lh target/wasm32-unknown-unknown/release/bare_metal_wasm.wasm -rw-r--r-- 1 cbiffle cbiffle 71 Jun 7 20:35 opt.wasm
We can do better, though, by applying wasm-opt:
$ wasm-opt -o opt.wasm -Oz target/wasm32-unknown-unknown/release/bare_metal_wasm.wasm $ ls -lh target/wasm32-unknown-unknown/release/bare_metal_wasm.wasm -rw-r--r-- 1 cbiffle cbiffle 71 Jun 7 20:35 opt.wasm
Second command should read:
$ ls -lh opt.wasm
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In the blog post Making really tiny WebAssembly graphics demos, there's a section:
Second command should read:
The text was updated successfully, but these errors were encountered: