-
Notifications
You must be signed in to change notification settings - Fork 13.4k
'dlopen(null pointer)' does not work on the android #10356
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Comments
I'm curious why |
Triage bump. I don't have a way to test this but the test in @jaeminMoon Do you have any input on this? |
This is confirmed still broken on Android :( EDIT: at least on the buildbots |
Triage: said test is here: https://github.com/rust-lang/rust/blob/f50dbd580f3d5d88a300da540db3c85164bfd0de/src/test/run-pass-fulldeps/auxiliary/linkage-visibility.rs I don't see anything disabled on android by what @flaper87 suggested. @tamird suggests this is broken on the bots, but I don't know enough about them to make the same evaluation. |
That's the auxiliary file - the test itself is disabled:
|
Triage: no change |
…logiq Add `let_underscore_untyped` Fixes rust-lang#6842 This adds a new pedantic `let_underscore_untyped` lint which checks for `let _ = <expr>`, and suggests to either provide a type annotation, or to remove the `let` keyword. That way the author is forced to specify the type they intended to ignore, and thus get forced to re-visit the decision should the type of `<expr>` change. Alternatively, they can drop the `let` keyword to truly just ignore the value no matter what. r? `@llogiq` changelog: New lint: [let_underscore_untyped]
see rust/src/auxiliary/linkage-visibility.rs
This test code is success on linux, but fail on android.
I think
dlopen(null pointer, RTLD_LAZY)
have to return 'main program Handle', but do not run on android.The text was updated successfully, but these errors were encountered: