-
Notifications
You must be signed in to change notification settings - Fork 13.4k
Fix android backtraces #43444
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
Fix android backtraces #43444
Conversation
Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @sfackler (or someone else) soon. If any changes to this PR are deemed necessary, please add them as extra commits. This ensures that the reviewer can see what has changed since they last reviewed the code. Due to the way GitHub handles out-of-date commits, this should also make it reasonably obvious what issues have or haven't been addressed. Large or tricky changes may require several passes of review and changes. Please see the contribution instructions for more information. |
Thanks! Could you be sure to enable the various backtrace-related tests for android as well? |
Could |
Woops, sorry, I missed it. This should do it. |
@bors: r+ Thanks! |
📌 Commit e307fad has been approved by |
⌛ Testing commit e307fad with merge 8c7bd997251c42a45ff4e0b1cf6e6444be7c4f4a... |
💔 Test failed - status-travis |
The
|
Anyone know how I can get the tests to run on an android ? When running |
I'd try something like |
@bors: retry r- trying to kick bors... |
@roblabla have you had a chance to look at the android test failures? Just want to make sure this doesn't get lost. |
I haven't yet. I'll get to it next week, probably. |
Friendly ping to keep this on your radar @roblabla ! |
🕸 This PR had been inactive for 2 weeks. Closing it to keep our queue clean. Feel free to reopen. 🕸 |
Fixes #17520
If
backtrace_syminfo
fails to return the symbol, attempt using backtrace_pcinfo to get it. For whatever reason, this fixes the backtraces on android with PIE.