You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In current implementation #93798 of the #[used(linker)] work fine if the symbol placed in same module or in the child module. This has been discussed and fixed here: #47384. But if the #[used(linker)] marks symbol from another crate, this won't work.
I tried this code:
main.rs:
#![feature(used_with_arg)]extern"C"{#[link_name = "__start_my_cool_section"]staticSTART:u32;#[link_name = "__stop_my_cool_section"]staticSTOP:u32;}#[used(linker)]#[link_section = "my_cool_section"]pubstaticTEST:[u32;0] = [];fnmain(){
bar::bar();// <--- try to comment thislet a = unsafe{&STARTas*const_asusize};let b = unsafe{&STOPas*const_asusize};println!("{a} {b} b-a={}", b-a);}
Cargo.toml of the main crate:
[package]
name = "foo"version = "0.1.0"edition = "2021"
[dependencies]
bar = { path = "bar" }
Comment out bar::bar() line of the main.rs and recompile. Then bar::TEST no longer exist in the output and no my_cool_section section in the compiled foo:
$ objdump -s -j"my_cool_section" ./foo
./foo: file format elf64-x86-64
objdump: section 'my_cool_section' mentioned in a -j option, but not found in any input file
If you do not use START/STOP variables (but call bar::bar()) of the example, then there is no my_cool_section section either. Probably I understand that this is not correct too.
As far as I understand, if this is not fixed, then some crates (linkme, inventory...) will not work correctly in some cases.
This is expected. Rustc will not load (and thus, link) a crate if it is not considered used -- specify it in Cargo.toml will not make it automatically a dependency.
In current implementation #93798 of the
#[used(linker)]
work fine if the symbol placed in same module or in the child module. This has been discussed and fixed here: #47384. But if the#[used(linker)]
marks symbol from another crate, this won't work.I tried this code:
main.rs:
Cargo.toml of the main crate:
lib.rs of the
bar
crate:So, as well as #47384 we may view contents of
my_cool_section
section:Comment out
bar::bar()
line of themain.rs
and recompile. Thenbar::TEST
no longer exist in the output and nomy_cool_section
section in the compiledfoo
:If you do not use
START
/STOP
variables (but callbar::bar()
) of the example, then there is nomy_cool_section
section either. Probably I understand that this is not correct too.As far as I understand, if this is not fixed, then some crates (linkme, inventory...) will not work correctly in some cases.
Meta
The text was updated successfully, but these errors were encountered: