lemme in@lemm.ee to Programming@programming.dev · 1 month agoThe US government wants devs to stop using C and C++www.theregister.comexternal-linkmessage-square91fedilinkarrow-up1215cross-posted to: purianesimo@fed.dyne.org
arrow-up1215external-linkThe US government wants devs to stop using C and C++www.theregister.comlemme in@lemm.ee to Programming@programming.dev · 1 month agomessage-square91fedilinkcross-posted to: purianesimo@fed.dyne.org
minus-squareScreaminOctopus@sh.itjust.workslinkfedilinkEnglisharrow-up5·1 month agoIn my understanding, you can’t interface with the C abi without using an unsafe block.
minus-squarecalcopiritus@lemmy.worldlinkfedilinkarrow-up1·1 month agoYou can just use an unsafe block though. Or make a thin wrapper that is just safe functions that inside just have an unsafe block with the C ABI function. Even if rust had a stable ABI, you would still need that unsafe block.
minus-squareFizzyOrange@programming.devlinkfedilinkarrow-up1·1 month agoI think there are some crates that wrap the unsafe code for you, e.g. https://github.com/rodrimati1992/abi_stable_crates/ (I haven’t ever tried it).
In my understanding, you can’t interface with the C abi without using an unsafe block.
You can just use an unsafe block though. Or make a thin wrapper that is just safe functions that inside just have an unsafe block with the C ABI function.
Even if rust had a stable ABI, you would still need that unsafe block.
I think there are some crates that wrap the unsafe code for you, e.g. https://github.com/rodrimati1992/abi_stable_crates/ (I haven’t ever tried it).