वाइन 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-बिट सिस्टम पर आप केवल वाइन-एक्स 64 संस्करण बना सकते हैं। उबंटू 12.04 x64 पर 32-बिट वाइन का निर्माण अभी के लिए बहुत छोटा लगता है।

तो बस इस कमांड को चलाएं:

./configure --enable-win64

6
क्या शराब के बजाय वाइन 64 का निर्माण नहीं होता है? मैं वाइन 64 के साथ विंडोज़ 32-बिट प्रोग्राम नहीं चला सकता।
गौथियर

1
आजकल शराब की आवश्यकता है flexऔर bisonइसलिए sudo apt install flex bisonपहले लेकिन हाँ यह सबसे अच्छा जवाब है।
tatsu

19

प्रति: https://stackoverflow.com/a/17748092/108802

आपको जीसीसी-मल्टीबिल स्थापित करने की आवश्यकता है।

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

फिर [...] एक ३२-बिट होस्ट और ३२-बिट संकलन झंडे को उत्तीर्ण करने के लिए:

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

मेरे मामले में, यह अभी भी बिना किसी शर्त के 32-बिट निर्भरता के कारण हुआ था जिसे उपयुक्त ने स्थापित करने से इनकार कर दिया था। मुझे लगता है कि 32-बिट सामान संकलित करने के लिए वर्चुअल लिनक्स मशीन स्थापित करना सिरदर्द से कम होगा।
हब्रो

1
यह एक बेहतर उत्तर है, क्योंकि कभी-कभी वाइन 64 32-बिट अनुप्रयोगों को चलाने में असमर्थ होता है
ब्रैंडन कुक्ज़ेंस्की


0

मैं कुछ संकुल जैसे कि gcc, gcc-c ++, flex, bison इत्यादि को स्थापित करने के बाद किश्त linux "RedHat 6.4" करने में सक्षम हूँ।

प्रॉम्प्ट पर नीचे चलाने के साथ:

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

make

wine notepad++.exe

5
और, क्या वह उबंटू में काम करता है?
Braiam

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.