|
发表于 2010-2-2 12:15:35
|
显示全部楼层
#114
The ldd -> ldd - print shared library dependencies so it will show you the dependinces.
First, I would ask you to run " ldd sfk " .
This is my output :
ldd sfk
linux-gate.so.1 => (0xb7fb7000)
libstdc++.so.6 => /usr/lib/libstdc++.so.6 (0xb7ebd000)
libm.so.6 => /lib/i686/cmov/libm.so.6 (0xb7e97000)
libgcc_s.so.1 => /lib/libgcc_s.so.1 (0xb7e8a000)
libc.so.6 => /lib/i686/cmov/libc.so.6 (0xb7d2f000)
/lib/ld-linux.so.2 (0xb7fb8000)
In case of ( libc.so.6 => not found ), please verify that the simlink(I think it's a symlink) '/lib/tls/libc.so.6' is pointing to some file, and that file realy exist.
Just in case, please run this ' strings sfk | grep GCC '
mine it shows that it was compiled with GCC_3.0 version.
You can download sfk from http://sourceforge.net/projects/ ... -linux.exe/download
Download the file.
Then run ' chmod +x sfk151-linux.exe ' (on tha new downloaded file. Don't worry, it's linux binary,not windows) and run it ./sfk151-linux.exe , and if it works, then replace the sfk with this one, you can see from documantation from sourgeforge, that it's not too old this version(1.5.1).
please verify that libc.so.6 is pointing to a file that do exist. You can see that by running ' ls -la /lib/lts/libc* ' and please look for it in /usr/lib , or /lib ,or /var/lib .
And one more thing please verify that you have instaled, if not you can install them from add/remove GUI or in console.
Keep in touch  |
|