Enforces the requirement that all functions defined inside your crate's extern "C"
blocks must be resolved in the final executable.
This may significantly increase your build time.
In your build.rs
file add this line to your main()
function
rust
strict_linking::init();
And then in your Cargo.toml
file add this
toml
[build-dependencies]
strict_linking = "0.1
First, we use cargo +nightly rustc --profile=check -- -Zunpretty-expanded
to expand macros inside the code for your
crate. Then we parse that with the syn
crate, and walk down the syntax tree
recursively, looking for extern "C"
blocks. We use the information from these to build a linker script, which we'll
then feed into your linker via
cargo:rustc-link-arg
.
The linker script uses platform specific flags like
/INCLUDE
and --undefined
so that the linker will not link successfully if one of those symbols is missing.