Instalando o Wine 1.5: configure: error: Não é possível criar um programa de 32 bits, você precisa instalar as bibliotecas de desenvolvimento de 32 bits

32
    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.

Como corrijo esse problema?

jaorizabal
fonte

Respostas:

30

Eu acho que você usa o Ubuntu 12.04 x64, que agora suporta multi-arquitetura. Em outras palavras, em um sistema de 64 bits, você pode criar apenas a versão Wine-x64. Construir o Wine de 32 bits no Ubuntu 12.04 x64 parece muito problemático no momento.

Então, basta executar este comando:

./configure --enable-win64
ergoproxi
fonte
6
Isso não cria wine64 em vez de wine? Não consigo executar programas de 32 bits do Windows com o wine64.
Gauthier
1
hoje em dia o vinho exige flexe bisonentão sudo apt install flex bisonprimeiro, mas sim, esta é a melhor resposta.
Tatsu # 10/18
19

Conforme: https://stackoverflow.com/a/17748092/108802

Você precisa instalar o gcc-multilibs.

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

Em seguida, especifique um host de 32 bits e transmita sinalizadores de compilação de 32 bits:

./configure --host=i686-linux-gnu "CFLAGS=-m32" "CXXFLAGS=-m32" "LDFLAGS=-m32"
Gauthier
fonte
No meu caso, isso ainda resultou em uma série de dependências de 32 bits não atendidas que se recusaram a instalar. Eu acho que seria menos doloroso instalar uma máquina virtual Linux para compilar coisas de 32 bits.
Hubro
1
Esta é uma resposta melhor, já que às vezes wine64 é incapaz de rodar aplicativos de 32 bits
Brandon Kuczenski
3

tente instalar as dependências de 32 bits

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
Ricardo Jl Rufino
fonte
0

Eu sou capaz de instalar o linux "RedHat 6.4" depois de instalar alguns pacotes como gcc, gcc-c ++, flex, bison etc.

com abaixo executado no prompt:

./configure --enable-win64 --without-freetype

make

wine notepad++.exe
Rajesh Kumar Chaudhary
fonte
5
e, isso funciona no Ubuntu?
Braiam
0

Ubuntu 18.04.1 com 64 bits

  • sudo install flex
  • sudo install bison
  • ./configure --enable-win64 --without-freetype,
  • make
Juan Mendez
fonte