Failing to build WOW64 Wine

Questions about Wine on Linux
Locked
KenSharp
Level 4
Level 4
Posts: 110
Joined: Mon Jul 13, 2009 8:52 pm

Failing to build WOW64 Wine

Post by KenSharp »

In Precise this process used to work, but moving to Trusty I keep hitting a brick wall and cannot work out how to get over it.

On 64-bit host:

Code: Select all

CC="ccache cc" CFLAGS="-g -O2" ~/wine-git/configure --disable-tests --enable-win64 --prefix=/opt/wine-1.7.30 1>/dev/null && make -j4 1>/dev/null
This successfully builds a 64-bit Wine.

On 32-bit chroot:

Code: Select all

CC="ccache cc" CFLAGS="-g -O2" ~/wine-git/configure --disable-tests --prefix=/opt/wine-1.7.30 --with-wine64=$HOME/wine64 1>/dev/null && CCACHE_PREFIX=distcc DISTCC_HOSTS="localhost/4 babs/4" make -j8 1>/dev/null
This fails with:
./config.status: line 551: /home/test/wine64/tools/makedep: No such file or directory
config.status: error: could not create Makefile
I have no idea which Makefile it is referring to.

~/wine64 on the host is bound to ~/wine64 on the chroot and both have full write access.
/home/test/wine64 on /home/test/chroot-trusty-i386/root/wine64 type none (rw,bind)
I have no idea where to go with this now.
Locked