I just improved http://code.google.com/p/winezeug/source/browse/trunk/install-wine-deps.sh so it does all the futzing needed to build 32 bit wine on 64 bit systems (although at the moment it only does this for Ubuntu Intrepid).
Because it puts the missing .so files in /usr/lib32, there's no need to futz with LDPATH.
For example, after running the script, you can do either ./configure make to build 64 bit wine, or ./configure --target=i686-unknown-gnu-linux make to build 32 bit wine. Easy beans! - Dan
On Fri, 2 Jan 2009 16:23:52 -0800 "Dan Kegel" dank@kegel.com wrote:
./configure --target=i686-unknown-gnu-linux
What does that do? It's not listed in "./configure --help". For building 64bit wine I have to pass "--enable-win64". 32bit wine builds with just "make". I am running Ubuntu 8.04 with an AMD64 processor, I have done all the linking in /lib32 myself.
INeedAnime wrote:
./configure --target=i686-unknown-gnu-linux
What does that do? It's not listed in "./configure --help".
It was a thinko. I put the correct instructions up at http://wiki.winehq.org/Wine64
- Dan