-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
wasmtime-cli: support run --invoke
for components using wave
#10054
base: main
Are you sure you want to change the base?
Conversation
b8e53e8
to
2c60577
Compare
Tried this locally and got the following: cd /Users/tpmccallum
git clone https://github.com/bytecodealliance/wasmtime.git
cd wasmtime
git checkout main
git pull origin main
git checkout pch/invoke_wave
git merge main
cargo clean
cargo build --release Repo I used for testing is at https://github.com/tpmccallum/testing_components/tree/main (specifically the tpmccallum@192-168-1-17 compress % /Users/tpmccallum/wasmtime/target/release/wasmtime run --invoke compress target/wasm32-wasip1/debug/compress.wasm
Error: failed to run main module `target/wasm32-wasip1/debug/compress.wasm`
Caused by:
0: parsing invoke "compress"
1: unexpected end of input at 8..8 |
The wave syntax requires functions to be invoked with parens, so |
Thanks for the response @pchickey |
Hi @pchickey |
No description provided.