On my Linux machine SUSE Linux 8.1 the following error occurred:
rm: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
This behaviour can be fixed by adding:
unset LD_ASSUME_KERNEL
below the block:
# glibc floating stack problem on Linux
if [ `uname -s` = Linux ]
then
case `uname -r` in
2.[456]*)
LD_ASSUME_KERNEL=2.2.5
export LD_ASSUME_KERNEL
;;
esac
fi
or just delete the block
Joachim
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
On my Linux machine SUSE Linux 8.1 the following error occurred:
rm: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
This behaviour can be fixed by adding:
unset LD_ASSUME_KERNEL
below the block:
# glibc floating stack problem on Linux
if [ `uname -s` = Linux ]
then
case `uname -r` in
2.[456]*)
LD_ASSUME_KERNEL=2.2.5
export LD_ASSUME_KERNEL
;;
esac
fi
or just delete the block
Joachim