Replies: 1 comment
-
I believe this currently happens to work on x86 because we don't specifically guard against it, but will fail on ARM architectures. This working is more of an accident rather than a conscious design decision. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, I noticed that
wasmer
handle error happened in wasi function different fromwasmtime
. For example, when meeting parameter that is not aligned to 4 infd_write
,wasmtime
raises an exceptionPointer not aligned to 4
error whilewasmer
is not.I checked the specifications of wasi and found that the parameter was required to be aligned.
I'm quite curious about how you think about it.
Beta Was this translation helpful? Give feedback.
All reactions