|
|
|
|
|
by flukus
3256 days ago
|
|
> While your use cases are definitely valid for you, this is not a Rust issue, but something that's 100% decided by your distro. They decide if, when and how they integrate Rust into it. It's a rust issue because it's up to the rust compiler to generate ABI compatible binaries, at the moment there is no ABI so there isn't much distros can do. It seems they have no intention of adding one any time soon: https://github.com/rust-lang/rfcs/issues/600 This is why system libraries are nearly always in c and not c++. The ones that aren't (Qt) have a long history of broken language bindings. |
|