I’m trying to install WineASIO on opensuse 12.2 x64. I tried installing it from the software manager, but it doesn’t seem to register with Wine. It does not show up in the registry.
My second attempt was to try to compile wineasio and register wineasio.dll manually, but I can’t even get it to compile. I just keep getting stuck with the following error.
winegcc -shared -m32 wineasio.dll.spec -mnocygwin -L/usr/lib/wine -L/usr/lib -o wineasio.dll.so asio.o main.o regsvr.o -ljack -lodbc32 -lole32 -lwinmm -luuid
/usr/bin/ld: Relocatable linking with relocations from format elf64-x86-64 (/usr/lib64/wine/libuuid.a(uuid.o)) to format elf32-i386 (wineasio.EtLfrl.o) is not supported
winebuild: /usr/bin/ld failed with status 1
winegcc: winebuild failed
make: *** [wineasio.dll.so] Error 2
> I’m trying to install WineASIO on opensuse 12.2 x64. I tried installing
> it from the software manager, but it doesn’t seem to register with Wine.
> It does not show up in the registry.
Did you do anything after installing the package to configure it?
Since WINE information is stored in .wine in the user home directory, the
package installation can’t likely make the changes necessary, that would
be necessary after installation IIRC.
> I installed the package directly from Software Manager. Search wineasio
>
> rpm -qa wineasio wineasio-0.9.0-5.4.i586
>
> Thanks for looking into this.
That package has the dll as /usr/lib/wineasio.dll.so
As a regular user, the command to run once the package is installed is:
regsvr32 wineasio.dll
When you run this command, what specifically happens?
On Sat, 02 Mar 2013 21:41:16 +0000, Jim Henderson wrote:
> On Sat, 02 Mar 2013 19:36:01 +0000, rRobot wrote:
>
>> I installed the package directly from Software Manager. Search wineasio
>>
>> rpm -qa wineasio wineasio-0.9.0-5.4.i586
>>
>> Thanks for looking into this.
>
> That package has the dll as /usr/lib/wineasio.dll.so
>
> As a regular user, the command to run once the package is installed is:
>
> regsvr32 wineasio.dll
>
> When you run this command, what specifically happens?
Ah, wait, what is the output of:
rpm -qa | grep -i wine
?
This is an i586 version of the DLL. If you’re using 64-bit WINE, you
need the 64-bit version.
> It successfully registered and WineASIO is now showing up in my
> available devices for FLStudio. Looks like I’m making some progress
>
> Doesn’t work 100% though. I’m still unsure if it’s config issues in
> other areas. I’ll let you know.