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
Hello, I build a wasm module with TinyGo like this:
tinygo build -o hello-orange.wasm \ -scheduler=none \ --no-debug \ -target wasi ./main.go
I would like to publish it to https://wapm.io/, but when I try this command wapm publish, I get this error message:
wapm publish
Error: WASM file "hello-orange.wasm" detected as invalid because bulk memory support is not enabled (at offset 3196)
I created an issue on the TinyGo project, but I would like to know if I forgot something in wapm.toml? Thank you 🙏
wapm.toml
[package] name = "k33g/hello-orange" version = "1.0.0" description = "Package description for k33g/hello-orange" license = "MIT" [[module]] name = "hello-orange" source = "hello-orange.wasm" abi = "wasi"
The text was updated successfully, but these errors were encountered:
I believe this was resolved in #3473 and that fix made its way into the 3.1 or 3.2 release.
@k33g let us know if updating your wasmer CLI version doesn't fix this and we can re-open the ticket.
wasmer
Sorry, something went wrong.
@Michael-F-Bryan apparently it's something else
wasmer 3.3.0 wapm-cli 0.5.9
Same thing is happening with me. I'm using rust stable (although I tried compiling with nightly and ran into this: wasmerio/wai#43 )
No branches or pull requests
Summary
Hello,
I build a wasm module with TinyGo like this:
I would like to publish it to https://wapm.io/, but when I try this command
wapm publish
, I get this error message:Error: WASM file "hello-orange.wasm" detected as invalid because bulk memory support is not enabled (at offset 3196)
I created an issue on the TinyGo project, but I would like to know if I forgot something in
wapm.toml
? Thank you 🙏Additional details
The text was updated successfully, but these errors were encountered: