-
Hey there! I was just trying to publish my first WAPM package, but the CLI is telling me that my WASM file is invalid because bulk memory support is not enabled. My WASM is built from a simple Rust crate, and I don't know if there's a way to tell Rust not to generate bulk memory instructions or not. Also, I can run the WASM file just fine with Any pointers would be appreciated! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I also ran into this . I assume you are building on Rust nightly, correct? I'll create an issue. In the meantime: things should work fine with stable Rust. |
Beta Was this translation helpful? Give feedback.
I also ran into this .
I assume you are building on Rust nightly, correct?
This seems to be a recent change in Rust nightly default wasm compilation flags.
I'll create an issue.
In the meantime: things should work fine with stable Rust.