[Wine] Re: [Wine 1.4rc1]Mouse support broken in MassEffect and Bioshock

rockorequin wineforum-user at winehq.org
Wed Mar 7 19:57:37 CST 2012


For what it's worth, you *can* build wine on Ubuntu 12.04 amd64 without breaking amd64 compiles for 64 bit software, but you have to manually create links for the various 32 bit ".so" library files.

eg To get GLU support, you need to install both libgl1-mesa:i386 to get the 32 bit library .so file and libglu1-mesa-dev to get the dev files. Then you create a symlink so wine's build system can find the libGLU.so file:


Code:
sudo ln -s /usr/lib/i386-linux-gnu/libGLU.so.1 /usr/lib/i386-linux-gnu/libGLU.so



Assuming you have the intel mesa libraries installed, another slightly more tricky example is libGL.so (libgl1-mesa-glx:i386 and libgl1-mesa-dev):


Code:
ln -s /usr/lib/i386-linux-gnu/mesa/libGL.so.1 /usr/lib/i386-linux-gnu/libGL.so









More information about the wine-users mailing list