Installazione di Wine 1.5: configure: errore: impossibile creare un programma a 32 bit, è necessario installare librerie di sviluppo a 32 bit


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.

Come posso risolvere questo problema?

Risposte:


30

Immagino che tu usi Ubuntu 12.04 x64 che ora supporta la multiarchitettura. In altre parole, su un sistema a 64 bit è possibile creare solo la versione Wine-x64. Costruire Wine a 32 bit su Ubuntu 12.04 x64 sembra troppo pieno per ora.

Quindi esegui questo comando:

./configure --enable-win64

6
Questo non costruisce wine64 invece di wine? Non riesco a eseguire programmi Windows a 32 bit con wine64.
Gauthier,

1
al giorno d'oggi il vino richiede flexe bisonquindi sudo apt install flex bisonprima, ma sì, questa è la risposta migliore.
Tatsu,

19

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

Devi installare gcc-multilibs.

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

Quindi [...] specificare un host a 32 bit e passare i flag di compilazione a 32 bit:

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

Nel mio caso, ciò ha comportato comunque una serie di dipendenze non soddisfatte a 32 bit che apt si sono rifiutate di installare. Penso che sarebbe meno complicato installare una macchina Linux virtuale per compilare materiale a 32 bit.
Hubro,

1
Questa è una risposta migliore, poiché a volte wine64 non è in grado di eseguire applicazioni a 32 bit
Brandon Kuczenski

3

prova a installare le dipendenze a 32 bit

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

Sono in grado di eseguire l'installazione Linux "RedHat 6.4" dopo aver installato alcuni dei pacchetti come gcc, gcc-c ++, flex, bison ecc.

con sotto il prompt run on:

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

make

wine notepad++.exe

5
e funziona in Ubuntu?
Braiam,

0

Ubuntu 18.04.1 con 64 bit

  • sudo install flex
  • sudo install bison
  • ./configure --enable-win64 --without-freetype,
  • make
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.