Using 32-bit libraries on 64-bit Linux
- Posted by ghaberek (admin) May 03, 2012
- 1476 views
I recently got a new laptop and installed Ubuntu 12.04 LTS 64-bit. I started setting things up for Euphoria and was having some strange issues, specifically with wxEuphoria. Turns out, in order to install the 32-bit equivalent libraries on a 64-bit system, you have to put ":i386" after the name of the library when installing. So to install the supporting libraries for wxEuphoria, you need to run:
sudo apt-get install libwxbase2.8-0:i386 libwxgtk2.8-0:i386 libstdc++6:i386
-Greg