-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
Inconsistencies when exporting dynamic symbols from executables #58037
Comments
Thinking about this issue some more, and the constant need to be adding Possibly related: #34131 |
Some relevant discussion is occurring on #63909. |
@acfoltzer and I debugged this a bit today. My hunch was that this is the problem (here for MSVC). We don't actually tell the linker (unlike we do for wasm for example) that it should export Apparently though for both the gold and bfd linkers that didn't work. Although |
More spooky action at a distance when it comes to exporting dynamic symbols 🙃 Ref: rust-lang/rust#58037
More spooky action at a distance when it comes to exporting dynamic symbols 🙃 Ref: rust-lang/rust#58037
Related to #47384 |
I'm working on a project that uses dynamic loading with callbacks back into the Rust executable. Now that the project is big enough to require some of these callbacks to be defined in separate crates, I'm finding the behavior of when a symbol is exported or not to be very inconsistent.
I've tried to shrink the issue by creating a repo that contains several variants that do and don't work. The README describes the variations in more detail: https://github.com/acfoltzer/exported-symbol-example
The upshot is that based on #54451, I would expect that any
#[no_mangle]
definitions in both the executable crate and any dependencies to be exported from the final executable, assuming--export-dynamic
is used for the final link step.Instead, the exported
#[no_mangle]
callbacks are eliminated from the final executable in many situations. It's not as simple as whether the callbacks are used/reachable directly frommain
, but also seems to be influenced by the use of trait objects that happen to share a module with the callbacks. This doesn't seem like the intended behavior.Meta
Reproducible on nightly and stable:
The text was updated successfully, but these errors were encountered: