web-dev-qa-db-ja.com

Wine 1.5のインストール:構成:エラー:32ビットプログラムをビルドできません。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.

この問題を修正するにはどうすればよいですか?

29
jaorizabal

マルチアーキテクチャをサポートするようになったUbuntu 12.04 x64を使用していると思います。つまり、64ビットシステムでは、Wine-x64バージョンのみをビルドできます。 Ubuntu 12.04 x64で32ビットWineをビルドすることは、今のところバグが多いようです。

したがって、次のコマンドを実行するだけです。

./configure --enable-win64
28
ergoproxy

通り: https://stackoverflow.com/a/17748092/108802

Gcc-multilibsをインストールする必要があります。

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

次に、[...] 32ビットホストを指定し、32ビットコンパイルフラグを渡します。

./configure --Host=i686-linux-gnu "CFLAGS=-m32" "CXXFLAGS=-m32" "LDFLAGS=-m32"
17
Gauthier

32ビットの依存関係をインストールしてみてください

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
3

Gcc、gcc-c ++、flex、bisonなどのパッケージをインストールした後、Linux「RedHat 6.4」をインストールできます。

以下はプロンプトで実行します:

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

make

wine notepad++.exe

64ビットのUbuntu 18.04.1

  • Sudo install flex
  • Sudo install bison
  • ./configure --enable-win64 --without-freetype
  • make
0
Juan Mendez