Curry Matthew J CRBE wrote:
>"ldd on a file" simply means run ldd on it. ldd will show you what dynamic libraries the executable or library will link against at runtime.
>
>If no output is displayed, it means the file in question was linked to static libraries; and in your case might not be linking with the libtotalview.so library.
>
>
Thanks! Here's the ldd output:
libutil.so.1 => /lib/libutil.so.1 (0x00d6b000)
libdl.so.2 => /lib/libdl.so.2 (0x00833000)
libpthread.so.0 => /lib/tls/libpthread.so.0 (0x00924000)
libc.so.6 => /lib/tls/libc.so.6 (0x006e2000)
/lib/ld-linux.so.2 (0x006c9000)
Indeed, no libtotalview.so. How do i correct it?
|