การติดตั้ง Wine 1.5: configure: error: ไม่สามารถสร้างโปรแกรม 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 การสร้างไวน์ 32- บิตบน Ubuntu 12.04 x64 ดูเหมือนว่าจะไม่คุ้มค่า

ดังนั้นให้เรียกใช้คำสั่งนี้:

./configure --enable-win64

6
นั่นไม่ได้สร้างไวน์ 64 แทนที่จะเป็นไวน์ใช่ไหม ฉันไม่สามารถรันโปรแกรม windows 32 บิตด้วย wine64
Gauthier

1
ปัจจุบันไวน์ต้องflexและbisonเพื่อให้sudo apt install flex bisonเป็นครั้งแรก แต่ใช่นี้เป็นคำตอบที่ดีที่สุด
tatsu

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"

ในกรณีของฉันนี้ยังคงส่งผลให้การพึ่งพา 32 บิตที่ไม่ได้รับอนุญาตซึ่ง apt ปฏิเสธที่จะติดตั้ง ฉันคิดว่าคงจะปวดหัวน้อยกว่าในการติดตั้งเครื่อง Linux เสมือนจริงสำหรับการรวบรวมข้อมูล 32 บิต
Hubro

1
นี่เป็นคำตอบที่ดีกว่าเพราะบางครั้ง wine64 ไม่สามารถเรียกใช้แอปพลิเคชันแบบ 32 บิตได้
Brandon 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

ฉันสามารถติดตั้ง linux "RedHat 6.4" ได้หลังจากติดตั้งแพ็กเกจบางอย่างเช่น gcc, gcc-c ++, flex, bison เป็นต้น

ด้วยการเรียกใช้ด้านล่างพร้อมรับคำ:

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

make

wine notepad++.exe

5
และสิ่งนี้ใช้ได้กับ Ubuntu หรือไม่
Braiam

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.