

IIRC Same compiler version doesn’t mean the ABI will be the same. Each compilation may produce different representation of data structures in the binary. Depending on the optimization and other things.
IIRC Same compiler version doesn’t mean the ABI will be the same. Each compilation may produce different representation of data structures in the binary. Depending on the optimization and other things.
Perfect, it looks like the thing I want. Hopefully it can do multiple devices in different networks. I’ll test it out when I can.
Thank you :)
I’d like a local filesharing option. Where a single folder would be synced in my phone from home computer when I’m at home, and from work computer and phone when I’m at work. Without using cloud sync between them only when I’m physically traveling between them, that’s good enough for most use cases of cloud sync that I want for work.
Sometimes you get into skill issue, or time issues. I make some softwares that I need, but I don’t have advertising skills to make people use it.
And sometimes I want to make something, but I don’t have the necessary skills.
For example I’d like a local filesharing option. Where a single folder would be synced in my phone from home computer when I’m at home, and from work computer and phone when I’m at work. Without using cloud sync between them only when I’m physically traveling between them, that’s good enough for most use cases of cloud sync that I want for work.
Yeah, and there’s no plan to stabilize the ABI because it’s developing.
You can use C ABI for some data formats, but you’re limited on what you can use (mostly primitives). There’s a crate stable-abi or abi-stable that provides a way to do things to keep it stable, but since it’s external crate it has limitations.
I know it’s frustrating because I am writing something in rust that loads functions in runtime. I thought it’d be easy because programs written in C do it all the time. Rust gives a lot of advantages but working on dynamic loading hasn’t been fun. And there aren’t a lot of resources about this either.