huangjj27 commented on issue #855:
I encounter the exactly same bug with the rust version code, with wasmtime 4.0.0 on windows 11:
- use the rust code from the tutorial
- make the function
process
to bepub
, and#[no_mangle]
- compile the project with
cargo wasi build
echo hello world > test.txt
- run the command and its return error:
> wasmtime --dir=. target\wasm32-wasi\debug\demo.wasm --invoke process test.txt somewhere.txt warning: using `--invoke` with a function that takes arguments is experimental and may break in the future Error: failed to run main module `target\wasm32-wasi\debug\demo.wasm` Caused by: invalid digit found in string
huangjj27 commented on issue #855:
and I checked out that what #858 has fixed is another bug, and its added a test for a digit param when invoking, but not for a string param, which is the bug I'm encountering now.
huangjj27 edited a comment on issue #855:
and I checked out that what #858 has fixed is another bug, and it added a test for a digit param when invoking, but not for a string param, which is the bug I'm encountering now.
huangjj27 edited a comment on issue #855:
I encounter the exactly same bug with the rust version code, with wasmtime 4.0.0 on windows 11:
- use the rust code from the tutorial
- make the function
process
to bepub
, and#[no_mangle]
- compile the project with
cargo wasi build
echo hello world > test.txt
- run the command and it returns these error:
> wasmtime --dir=. target\wasm32-wasi\debug\demo.wasm --invoke process test.txt somewhere.txt warning: using `--invoke` with a function that takes arguments is experimental and may break in the future Error: failed to run main module `target\wasm32-wasi\debug\demo.wasm` Caused by: invalid digit found in string
huangjj27 commented on issue #855:
I find out another problem with the same bug on stackoverflow, just linking :-}
Last updated: Nov 22 2024 at 17:03 UTC