Libraries Required to Run on Mandrake&Mandriva LinuxArtwork develops and tests its Linux software on RedHat and Suse because these two Linux operating systems are the ones most commonly used in the EDA industry. That does not mean our applications won't run on other flavors of Linux such as Mandrake&Mandriva. Recently we came across a customer running Mandrake who could not get our apps to run on his machine. The INSTALL script on Mandrake&Mandriva Linux
First, the INSTALL script would not execute. That proved to be a simple issue. [hagai@asmsc37 mbs2gds]$ head INSTALL #!/usr/bin/ksh ProductName="Mbs2tiff" productname="mbs2tiff"On Mandrake/Mandriva, ksh shell is not used so much as the bash shell, so the first line of the INSTALL script must change from.. #!/usr/bin/ksh to #!/bin/bash openmotif Libraries on Mandrake&Mandriva LinuxAfter completing the installation, the mbs2tiff software was executed but failed with missing library errors. [hagai@asmsc37 examples]$ pwd /home/cad/mbs2gds/examples [hagai@asmsc37 examples]$ ../bin/mbs2tiff ../bin/mbs2tiff.exe: error while loading shared libraries: libXm.so.3: cannot open shared object file: No such file or directoryThe solution for that was to download openmotif and installing it as root user with the following command: rpm -i openmotif-2.2.2-14.i386.rpm |