Linux Libraries for Blue

On your Linux system, you need the following versions (or newer) of libraries:
libc.so.5.4.26 (usually in /lib)
libg++.so.2.7.2.1 (usually in /usr/lib)
libstdc++.so.27.2.1 (usually in /usr/lib)
If your versions are older, load the new version from here:

Installation Intructions

Installing libc: Get the libc package (libc-5.4.26.bin.tar.gz) and follow these steps:
Assuming the libc package binary tarfile is in /, and as root, execute:

cd /
rm -f /lib/libc.so /lib/libm.so
rm -f /usr/lib/libc.so /usr/lib/libm.so
rm -f /usr/include/iolibio.h /usr/include/iostdio.h
rm -f /usr/include/wcstr.h /usr/include/mbstr.h
rm -f /usr/include/ld_so_config.h /usr/include/localeinfo.h
rm -rf /usr/include/netinet /usr/include/net /usr/include/pthread
gzip -dc libc-5.4.26.bin.tar.gz | tar xvf -
ldconfig

Installing libg++: Get the libg++ package (libg++-2.7.2.1.bin.tar.gz) and follow these steps:

Assuming the libg++ package binary tarfile is in /, and as root, execute:

cd /
rm -rf /usr/include/g++
gzip -dc libg++-2.7.2.1.bin.tar.gz | tar xvvf -
ldconfig


Back to Blue Download Page