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 tried to use the VM to write some examples with crates (nostd, default-features = false) in a simple project, most work well for me!
But I failed in a simple example with sqlparser-rs in this code, it reports the error of misaligned memory access. This code could work well in a normal project (without VM), I tried to debug it, seems the SQL tokens are parsed wrong from the string (may be caused by macro).
Do you have any ideas about this eror? Thanks.
The text was updated successfully, but these errors were encountered:
I was able to reproduce with the riscv VM using Paged memory, both release and debug with a larger memory size. Looks like a real unaligned access from the rust compiler.
Hi, this is really a good project!
I tried to use the VM to write some examples with crates (nostd, default-features = false) in a simple project, most work well for me!
But I failed in a simple example with sqlparser-rs in this code, it reports the error of
misaligned memory access
. This code could work well in a normal project (without VM), I tried to debug it, seems the SQL tokens are parsed wrong from the string (may be caused by macro).Do you have any ideas about this eror? Thanks.
The text was updated successfully, but these errors were encountered: