Hacker News new | ask | show | jobs
by TazeTSchnitzel 1109 days ago
Rust basically doesn't have dynamic linking though and is relying on underlying platforms having stable ABIs.
1 comments

It does have dynamic linking, --crate-type=dylib.
Sure, but the ABI isn't stable and you're expected to recompile all your dependencies in one go. You can make a C-style ABI for your crate but that's not very common.
That is another matter.