[Vm-dev] Minimum 32-bit libs for Ubuntu

J. Vuletich (mail lists) juanlists at jvuletich.org
Sun Sep 27 20:09:13 UTC 2015


Hi Eliot,

These days I had to document the setup needed on Debian 8 to run Cuis  
and Cuis made applications. This is described at:  
https://github.com/Cuis-Smalltalk/Cuis-Smalltalk-Dev/blob/master/Documentation/GettingStarted-UsingGitAndCommandline.md  
..

The relevant parts here, the minimum set of 32 bit libs to run under  
Debian is:

sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install libc6-i386
# This (libc6-i386) was needed to make ldd work on 32 bit programs and  
dynamic libraries
# So, we can do stuff like       $ ldd  
coglinuxht/lib/squeak/4.5-3370/squeak       to find about missing  
libraries
sudo apt-get install libuuid1:i386
sudo apt-get install libX11-6:i386
sudo apt-get install libXext6:i386
sudo apt-get install libsm6:i386
# Next 3 are only needed for experimenting with OpenCL
sudo apt-get install mesa-common-dev:i386
sudo apt-get install libgl1-mesa-dev:i386
cp /usr/lib/i386-linux-gnu/libOpenCL.so.1 libOpenCL.so

This was tested after a fresh OS install.

HTH,
Juan Vuletich

Quoting Eliot Miranda <eliot.miranda at gmail.com>:

> Please add your best recollection of what to add to the  
> build.linux32x86/HowToBuild file.  Pretty please :-)





More information about the Vm-dev mailing list