-
Notifications
You must be signed in to change notification settings - Fork 86
New issue
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
Broken debugging support #147
Comments
Related uhyve commit: hermit-os/uhyve@a9cae62 |
This can be worked around by using Both of these currently seem to be Currently-working example: symbol-file target/x86_64-unknown-hermit/debug/rusty_demo -o 0x400000 |
Since hermit-os/uhyve#164 (section_offsets.rs) this works in uhyve again! 🎉 |
5685ca7 broke Rust-level debugging support. While it is still possible to step through assembly code using
qemu
oruyhve
, any operation on a higher level, like setting a breakpoint in Rust code, is broken.As this is caused by relocated code, which apparently confuses
gdb
in its current form, there must be a way to properly communicate the relocation details to make it work again.The text was updated successfully, but these errors were encountered: