You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By default rust functions use the rust calling convention which is unstable and may not match the C calling convention that is likely expected by the Pharo VM. You need to use extern "C" fn to use the C calling convention.
By default rust functions use the rust calling convention which is unstable and may not match the C calling convention that is likely expected by the Pharo VM. You need to use
extern "C" fn
to use the C calling convention.gtoolkit-vm/vm-runtime/src/virtual_machine.rs
Lines 177 to 178 in 0733778
The text was updated successfully, but these errors were encountered: