|
From: Paul P. <ppl...@gm...> - 2005-10-06 03:07:17
|
On 10/5/05, Irek Szczesniak <ij...@ii...> wrote: > > Paul Pluzhnikov wrote: > > > Probably linking with libc.a or linking static malloc() ... > > What does 'nm simone | grep malloc' report? > > This command returns nothing, because I am not using malloc. The > program is written in C++. Well, this definitely confirms that you are *not* linking static malloc. The command 'ldd simone' says: > > > libdmallocxx.so =3D> /usr/lib/libdmallocxx.so (0x00c79000) Interesting. Perhaps libdmallocxx.so somehow iterferes with VG operation? [It doesn't appear to affect my VG-2.4 on a trivial test case, but you can try linking without it and see if things improve.] But 'nm -C /usr/lib/libstdc++.so.6' says: > > > nm: /usr/lib/libstdc++.so.6: no symbols > > which is a new thing on me. It's been stripped. It still has a dynamic symbol table though, which you can examine with "nm -D /usr/lib/libstdc++.so.6". Cheers, |