-
Notifications
You must be signed in to change notification settings - Fork 13k
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
Linking to static native libraries loses the native library debug info #3899
Comments
non-critical for 0.6, de-milestoning |
Reproduced, but I have no idea why it's happening; if I copy the Nominating for production ready. |
accepted for production-ready milestone |
Assigning P-low. |
cc @luqmana want to take a look at this? |
Cannot reproduce this anymore. My example program: #[link(name = "somelib", kind = "static")]
extern {
fn some_c_function();
}
fn main() {
unsafe {
some_c_function();
}
} I had no problem stepping into the |
Android: Added support for prctl handling thread names Addresses the first part of rust-lang#3618.
I've noticed that when I link static native libraries to Rust crates we lose the debug info from the native libraries. I assume that there is some minimum we can do to signal to the linker that we really want to keep that information.
The text was updated successfully, but these errors were encountered: