I'm doing a smaller Rust WASM project now and I've noticed that we are using at least 17 WASM pages again, even for a simple hello world project. That's 17 * 64 KiB = 1.1 MiB. That's quite a lot, considering not even a single page is fully used. Here's the text format of a small project:
I'm doing a smaller Rust WASM project now and I've noticed that we are using at least 17 WASM pages again, even for a simple hello world project. That's 17 * 64 KiB = 1.1 MiB. That's quite a lot, considering not even a single page is fully used. Here's the text format of a small project:
I think at some point we reduced this to only the amount that was necessary, but that doesn't seem to happen anymore.