Can't build 32bit Wine on 64bit linux

后端 未结 7 1865
逝去的感伤
逝去的感伤 2020-12-28 20:32

I\'m trying to do this:
Build 32bit on 64 bit Linux using an automake configure script?
Doesn\'t work for me :( Compileing wine. I found this in config.log:

7条回答
  •  不知归路
    2020-12-28 20:53

    What worked to some extent for me on Debian Wheezy:

    dpkg --add-architecture i386
    apt-get update
    

    to enable installation from the i386 repos

    apt-get install ia32-libs libc6-dev-i386 lib32z1-dev lib32bz2-dev
    

    to install the 32 bit libs. I'm actually still having trouble with X libs:

    configure: error: X 32-bit development files not found. Wine will be built
    without X support, which probably isn't what you want. You will need
    to install 32-bit development packages of Xlib/Xfree86 at the very least.
    Use the --without-x option if you really want this.
    

    but it's technically optional.

提交回复
热议问题