On 04/20/2011 02:51 PM, Chatterjee, Shash wrote:
> 
>  ...  Still no go, same results!
> 

In an earlier message Shash wrote:
-----
Here's ldd output:

        libapr-1.so.0 => /usr/local/lib/libapr-1.so.0 (0x0080e000)
        libaprutil-1.so.0 => /usr/local/lib/libaprutil-1.so.0 (0x002c4000)
        libcrypt.so.1 => /lib/libcrypt.so.1 (0x006e6000)
        libc.so.6 => /lib/libc.so.6 (0x00347000)
        libdl.so.2 => /lib/libdl.so.2 (0x004f0000)
        libexpat.so.1 => /lib/libexpat.so.1 (0x00c73000)
        libfreebl3.so => /lib/libfreebl3.so (0x008ce000)
        libgcc_s.so.1 => /lib/libgcc_s.so.1 (0x00533000)
        /lib/ld-linux.so.2 (0x00326000)
        liblog4cxx.so.10 => /usr/local/lib/liblog4cxx.so.10 (0x00110000)
        libm.so.6 => /lib/libm.so.6 (0x004fe000)
        libpthread.so.0 => /lib/libpthread.so.0 (0x004d3000)
        librt.so.1 => /lib/librt.so.1 (0x00569000)
        libstdc++.so.6 => /usr/lib/libstdc++.so.6 (0x05046000)
        libuuid.so.1 => /lib/libuuid.so.1 (0x004f7000)
        linux-gate.so.1 =>  (0x00ec8000)
-----
which does not match mine.  The number of lines is not the same.
Are some lines missing?  The two lists of libraries (yours vs mine) should 
match.
These libraries:
        libapr-1.so.0 => /usr/local/lib/libapr-1.so.0 (0x0080e000)
        libaprutil-1.so.0 => /usr/local/lib/libaprutil-1.so.0 (0x002c4000)
        liblog4cxx.so.10 => /usr/local/lib/liblog4cxx.so.10 (0x00110000)
are in /usr/local/lib.  Rpm would have put them in /usr/lib.
So, where did you get them?

Run the script:
-----
ldd ./test  |  grep /  |  grep '=>'  |
  while read lib arrow file addr; do
    rpm -qf $file
  done  |  sort -u
----
and compare with the output I reported earlier.

-- 

------------------------------------------------------------------------------
Benefiting from Server Virtualization: Beyond Initial Workload 
Consolidation -- Increasing the use of server virtualization is a top
priority.Virtualization can reduce costs, simplify management, and improve 
application availability and disaster protection. Learn more about boosting 
the value of server virtualization. http://p.sf.net/sfu/vmware-sfdev2dev
_______________________________________________
Valgrind-users mailing list
Valgrind-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/valgrind-users

Reply via email to