Closed sophiajt closed 4 years ago
I think that the limitation described there is not true any more.
I commented this code in the demo:
// Windows calling conventions are not supported yet.
// if cfg!(windows) {
// unimplemented!();
// }
Then I successful compiled the demo on linux for windows target:
cargo build --release --target x86_64-pc-windows-gnu
Then I could successful run the demo binary on Windows 10.
I removed the assert to see that the demo does work in Windows. I haven't dug in further to see why it works, but figured I'd share.