Yuto Kawamura

Results 25 comments of Yuto Kawamura

FYI this issue seems to have solved with newer clang/llvm version. I was trying to bindgen for some linux kernel header files like https://github.com/torvalds/linux/blob/master/include/uapi/linux/taskstats.h#L41 and hit the same issue, but...

wasm module/runtime can read/write from/to linear memory only https://wasmbyexample.dev/examples/webassembly-linear-memory/webassembly-linear-memory.rust.en-us.html so maybe the address you're passing around isn't valid in that regard. Anyway, without more information provided there's too many possibilities...

The error "error while executing at wasm backtrace" is originally from the wasmtime runtime https://github.com/bytecodealliance/wasmtime/blob/main/crates/wasmtime/src/trap.rs#L354 so that it indicates that there's a trap generated while executing your wasmtime module. It...

You mean when you compile your wasmtime-kotlin for the JVM target and execute your original wasm using it, the same error occurs? It's still difficult to think this is a...

> Is it possible to use something like this to build on more architectures? https://github.com/marketplace/actions/run-on-architecture Looks like an option, but it seems that we need to write entire build process...