Installing Wine 1.5: configure: error: Cannot build a 32-bit program, you need to install 32-bit development libraries

    Wine Installer v1.0

Warning !! wine binary (still) found, which may indicate
a (conflicting) previous installation.
You might want to abort and uninstall Wine first.
(If you previously tried to install from source manually, 
run 'make uninstall' from the wine root directory)

We need to install Wine as the root user. Do you want us to build Wine,
'su root' and install Wine?  Enter 'no' to build Wine without installing:
(yes/no) yes
Running configure...

checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking whether make sets $(MAKE)... yes
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking for cpp... cpp
checking whether gcc -m32 works... no
configure: error: Cannot build a 32-bit program, you need to install 32-bit development libraries.

Configure failed, aborting install.

How do I fix this problem?


Solution 1:

I guess you use Ubuntu 12.04 x64 which now supports multi-architecture. In other words, on a 64-bit system you can build only Wine-x64 version. Building 32-bit Wine on Ubuntu 12.04 x64 seems too buggy as for now.

So just run this command:

./configure --enable-win64

Solution 2:

As per: https://stackoverflow.com/a/17748092/108802

You need to install the gcc-multilibs.

sudo apt-get install gcc-multilib g++-multilib

Then [...] specifyiong a 32-bit host and passing 32-bit compilation flags:

./configure --host=i686-linux-gnu "CFLAGS=-m32" "CXXFLAGS=-m32" "LDFLAGS=-m32"

Solution 3:

try installing the 32 bits dependencies

sudo apt-get install ia32-libs
sudo apt-get install gcc-multilib g++-multilib
sudo apt-get install xserver-xorg-dev:i386 libfreetype6-dev:i386

Solution 4:

Ubuntu 18.04.1 having 64 bit

  • sudo apt-get install flex
  • sudo apt-get install bison
  • ./configure --enable-win64 --without-freetype,
  • make