How to install WineAsio?

Questions about Wine on Linux
Locked
ptrtdrv
Level 1
Level 1
Posts: 6
Joined: Sat Mar 25, 2023 2:44 am

How to install WineAsio?

Post by ptrtdrv »

I'm going to explain here how did I install WineAsio on my machine, because the official WineAsio project has no forum. I know it's another project and this forum is not meant to answear questions from another projects. I'll let the admin to decide if this post should be removed or not. So my approach is the following - installed the latest wine from the official repository and then download and compile the WineAsio libraries. Let's explain it step by step:

step 1 - Install latest wine. It's explained how to do it here https://wiki.winehq.org/Ubuntu (My version of wine is 8.0.1)
step 2 - Install wine development libraries so we can compile WineAsio project

Code: Select all

sudo apt-get install wine-stable-dev
step3 - Download the WineAsio project with Git

Code: Select all

git clone [email protected]:wineasio/wineasio.git
step4 - Switch to the source code version of WineAsio which I tested

Code: Select all

git checkout 56c3e9d
step5 - Let's compile the 64 bit version of the libraries

Code: Select all

cd wineasio

Code: Select all

make 64
step6 - If the libraries get compiled successfully copy them to the following folders

Code: Select all

sudo cp build64/wineasio.dll /opt/wine-stable/lib64/wine/x86_64-windows/

Code: Select all

sudo cp build64/wineasio.dll.so /opt/wine-stable/lib64/wine/x86_64-unix/
step7 - Install library to the wine prefix

Code: Select all

wine64 regsvr32 /opt/wine-stable/lib64/wine/x86_64-windows/wineasio.dll
If WineAsio is still not listed in your DAW's interface appy the following workaround - https://github.com/wineasio/wineasio/issues/24

Code: Select all

cp build64/wineasio.dll.so ~/.wine/drive_c/windows/system/wineasio.dll
That's all, enjoy!
Locked