Installation de Wine 1.5: configure: erreur: impossible de créer un programme 32 bits, vous devez installer des bibliothèques de développement 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.

Comment résoudre ce problème?

Réponses:


30

Je suppose que vous utilisez Ubuntu 12.04 x64 qui prend désormais en charge la multi-architecture. En d'autres termes, sur un système 64 bits, vous ne pouvez créer que la version Wine-x64. Construire Wine 32 bits sur Ubuntu 12.04 x64 semble trop bogué comme pour le moment.

Il suffit donc d'exécuter cette commande:

./configure --enable-win64

6
Cela ne construit-il pas wine64 au lieu de wine? Je ne peux pas exécuter de programmes Windows 32 bits avec wine64.
Gauthier

1
de nos jours le vin demande flexet bisondonc d' sudo apt install flex bisonabord mais oui c'est la meilleure réponse.
tatsu

19

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

Vous devez installer gcc-multilibs.

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

Ensuite, spécifiez [...] un hôte 32 bits et passez des drapeaux de compilation 32 bits:

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

Dans mon cas, cela a toujours entraîné une série de dépendances 32 bits non satisfaites qui ont refusé d'installer. Je pense que ce serait moins un casse-tête d'installer une machine Linux virtuelle pour compiler des trucs 32 bits.
Hubro

1
C'est une meilleure réponse, car parfois wine64 est incapable d'exécuter des applications 32 bits
Brandon Kuczenski

3

essayez d'installer les dépendances 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

0

Je suis capable de faire l'installation linux "RedHat 6.4" après avoir installé certains des paquets comme gcc, gcc-c ++, flex, bison etc.

avec ci-dessous exécuter à l'invite:

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

make

wine notepad++.exe

5
et cela fonctionne-t-il dans Ubuntu?
Braiam

0

Ubuntu 18.04.1 ayant 64 bits

  • sudo install flex
  • sudo install bison
  • ./configure --enable-win64 --without-freetype,
  • make
En utilisant notre site, vous reconnaissez avoir lu et compris notre politique liée aux cookies et notre politique de confidentialité.
Licensed under cc by-sa 3.0 with attribution required.