Instalowanie Wine 1.5: konfiguracja: błąd: Nie można zbudować programu 32-bitowego, należy zainstalować 32-bitowe biblioteki programistyczne


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.

Jak rozwiązać ten problem?

Odpowiedzi:


30

Myślę, że używasz Ubuntu 12.04 x64, który obsługuje teraz wiele architektur. Innymi słowy, w systemie 64-bitowym można zbudować tylko wersję Wine-x64. Budowanie 32-bitowego Wine na Ubuntu 12.04 x64 wydaje się na razie zbyt wadliwe.

Więc po prostu uruchom to polecenie:

./configure --enable-win64

6
Czy to nie buduje wine64 zamiast wina? Nie mogę uruchamiać 32-bitowych programów Windows z wine64.
Gauthier

1
wino wymaga w dzisiejszych czasach flexi bisontak sudo apt install flex bisonpierwszy, ale tak to jest najlepszą odpowiedzią.
tatsu

19

Zgodnie z: https://stackoverflow.com/a/17748092/108802

Musisz zainstalować gcc-multilibs.

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

Następnie [...] określ 32-bitowy host i przekaż 32-bitowe flagi kompilacji:

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

W moim przypadku nadal powodowało to mnóstwo niezaspokojonych 32-bitowych zależności, których apt odmówił instalacji. Myślę, że zainstalowanie wirtualnej maszyny Linux do kompilacji 32-bitowych programów byłoby mniej uciążliwe.
Hubro,

1
To lepsza odpowiedź, ponieważ czasami wine64 nie jest w stanie uruchomić aplikacji 32-bitowych
Brandon Kuczenski

3

spróbuj zainstalować zależności 32-bitowe

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

Jestem w stanie wykonać instalacyjny linux „RedHat 6.4” po zainstalowaniu niektórych pakietów, takich jak gcc, gcc-c ++, flex, bison itp.

z poniżej uruchom na monit:

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

make

wine notepad++.exe

5
i czy to działa w Ubuntu?
Braiam

0

Ubuntu 18.04.1 mający 64 bity

  • sudo install flex
  • sudo install bison
  • ./configure --enable-win64 --without-freetype,
  • make
Korzystając z naszej strony potwierdzasz, że przeczytałeś(-aś) i rozumiesz nasze zasady używania plików cookie i zasady ochrony prywatności.
Licensed under cc by-sa 3.0 with attribution required.