RustAudio / vst-rs

VST 2.4 API implementation in rust. Create plugins or hosts. Previously rust-vst on the RustDSP group.
MIT License
1.04k stars 91 forks source link

Compatibility with Apple Silicon (M1) architecture #173

Closed gyopiazza closed 2 years ago

gyopiazza commented 3 years ago

Hello! I can successfully compile the example VSTs on the M1 chip but they are not showing in the DAWs. I'm not sure if it's a compatibility issue with the Apple Silicon architecture or maybe it's something else.

Thank you for this project, I really hope I can play with it soon :)

schell commented 2 years ago

I ran into this as well. For me the problem was that the DAW was not an arm64 application, so it didn't see the arm64 compiled VST as an option. I had to cross compile my VST. This may not be the same for you, of course, but that's what I ran into.

gyopiazza commented 2 years ago

Thanks a lot @schell, that was indeed the problem!