We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When printing the stack trace in AOT, the first stack frame has address 0x000, e.g.
0x000
#00: 0x0000 - $f5 #01: 0x01ac - $f6 #02: 0x01fa - $f7 #03: 0x0265 - $f8 #04: 0x2365 - $f15 #05: 0x0119 - _start
How to reproduce: https://github.com/bytecodealliance/wasm-micro-runtime/blob/main/samples/debug-tools/symbolicate.sh#L18-L23.
It doesn't always happen (with other wasm/aot files), I tried compiling some Rust code and I wasn't getting the problem.
The text was updated successfully, but these errors were encountered:
@eloparco please try #3213.
Sorry, something went wrong.
Thanks for the quick fix, it works now!
#00: 0x0158 - $f5 #01: 0x01ac - $f6 #02: 0x01fa - $f7 #03: 0x0265 - $f8 #04: 0x2365 - $f15 #05: 0x0119 - _start
No branches or pull requests
When printing the stack trace in AOT, the first stack frame has address
0x000
, e.g.How to reproduce: https://github.com/bytecodealliance/wasm-micro-runtime/blob/main/samples/debug-tools/symbolicate.sh#L18-L23.
It doesn't always happen (with other wasm/aot files), I tried compiling some Rust code and I wasn't getting the problem.
The text was updated successfully, but these errors were encountered: