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

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

回答:


30

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

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

./configure --enable-win64

6
それはワインの代わりにwine64を構築しませんか?wine64でWindows 32ビットプログラムを実行できません。
ゴーティエ

1
最近はワインが必要ですflexし、bisonそのsudo apt install flex bison第一が、はい、これは最良の答えです。
タツ

19

ごと: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"

私の場合、これはまだaptがインストールを拒否した多数の満たされていない32ビットの依存関係をもたらしました。32ビットのものをコンパイルするために仮想Linuxマシンをインストールすることは頭痛の種ではないと思います。
ウブロ14年

1
これは、32ビットアプリケーションを実行することができませんwine64時々あるため、良い答えです
ブランドンKuczenski

3

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

0

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

プロンプトで以下を実行すると:

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

make

wine notepad++.exe

5
そして、それはUbuntuでも機能しますか?
ブライアム

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.