You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using wasmtime and wasmtime-go version 29. I have a wasm module compiled with tinygo. Whenever I get the exported _start function and call it, I am getting an error. This was not an issue with tinygo version 0.34.0. The error should most likely be nil because the exit status is 0?
Code calling _start
mainFunc := module.Instance.GetExport(module.Store, "_start").Func()
_, err = mainFunc.Call(module.Store)
//error is non nil
Error received that should probably be nil
error while executing at wasm backtrace:\n 0: 0x7a4e - <unknown>!<wasm function 116>\n\nCaused by:\n Exited with i32 exit status 0
The text was updated successfully, but these errors were encountered:
I am using wasmtime and wasmtime-go version 29. I have a wasm module compiled with tinygo. Whenever I get the exported
_start
function and call it, I am getting an error. This was not an issue with tinygo version 0.34.0. The error should most likely be nil because the exit status is 0?Code calling
_start
Error received that should probably be nil
The text was updated successfully, but these errors were encountered: